MySQL报错`ERROR: No query specified`

版权声明:如若转载,请联系作者。 https://blog.csdn.net/liu16659/article/details/83625240

MySQL报错ERROR: No query specified

1.报错如下

ERROR:  No query specified

遇到的情景有:

mysql> select * from sales\G;
Empty set (0.00 sec)

ERROR: 
No query specified

正常的语法如下,因为\G的作用相同

mysql> select * from sales\G
Empty set (0.00 sec)

猜你喜欢

转载自blog.csdn.net/liu16659/article/details/83625240