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)