Error code 1064, SQL state 42000: You have an error in your SQL syntax;

后端 未结 6 1049
囚心锁ツ
囚心锁ツ 2021-02-02 10:04

I\'m using latest version of MySQL ==> mysql-5.6.10-winx64.zip

Created the database and every thing is ok \'I think\' when I try to execute this simple command;

6条回答
  •  没有蜡笔的小新
    2021-02-02 10:11

    I prefixed the name of the table with the database name such as

    select * from database_name.table_name;
    

    and it worked perfectly, so most likely there's a name conflict.

提交回复
热议问题