ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use

前端 未结 10 751
悲&欢浪女
悲&欢浪女 2021-02-01 04:28

While I am trying to insert a row to my table, I\'m getting the following errors:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that         


        
10条回答
  •  青春惊慌失措
    2021-02-01 05:08

    This solution is for windows:

    1. Open command prompt in Administrator Mode.
    2. Goto path: C:\Program Files\MySQL\MySQL Server 5.6\bin
    3. Run below command: mysqldump -h 127.0.01 -u root -proot db table1 table2 > result.sql

提交回复
热议问题