MySQL的错误:No query specified

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL的错误:No query specified相关的知识,希望对你有一定的参考价值。

在做mysql主从同步的时候通过:

mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.18.139
                  Master_User: rep
                  Master_Port: 3307
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 107
               Relay_Log_File: relay-bin.000002
                Relay_Log_Pos: 253
        Relay_Master_Log_File: mysql-bin.000001
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
        Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
             Master_Server_Id: 3
1 row in set (0.00 sec)

ERROR: 
No query specified    ==>出现此错误

 

出现此错误的原因是因为执行命令:show slave status\G;的时候,多加了一个“;”分号。

 

当执行命令的时候去掉分号,就不会出现此错误。

 

mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.18.139
                  Master_User: rep
                  Master_Port: 3307
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 107
               Relay_Log_File: relay-bin.000002
                Relay_Log_Pos: 253
        Relay_Master_Log_File: mysql-bin.000001
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
        Seconds_Behind_Master: 0
1 row in set (0.00 sec)

mysql> 

  

 

以上是关于MySQL的错误:No query specified的主要内容,如果未能解决你的问题,请参考以下文章

ERROR: No query specified(Mysql数据库报错)

No identifier specified for entity 错误

No identifier specified for entity: XXXX 错误

make: *** No targets specified and no makefile found. Stop.错误

No value specified for 'Date'错误

nginx下No input file specified错误的解决