您的位置:首页技术文章
文章详情页

MySQL客户端吃掉了SQL注解?

【字号: 日期:2022-06-19 14:27:34浏览:36作者:猪猪

问题描述

通过MySQL原生的客户端发送一条包含注解的SQL语句:

/* sql=select * from test where id=1 */ select * from cama;

在服务端发现收到的SQL语句只保留了select * from cama;,而/* ... */之间的内容没有收到。

我的问题:MySQL自带的原生客户端是否会把注解部分吃掉,不会发往服务端?如果会吃掉注解,那么在哪里可以配置让它不吃掉注解,将sql语句原文发往服务端?、

谢谢!

问题解答

回答1:

mysql --help..........-c, --comments Preserve comments. Send comments to the server. The default is --skip-comments (discard comments), enable with --comments. .......

相关文章: