在MySQL中,dos黑色命令行出现: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
(错误1064 (42000):SQL语法出现错误;查看对应于你的MySQL服务器版本的手册,使用正确的语法)
e.g:
mysql> create table ‘student’(
-> ‘No’ int(20) not null primary key,
-> ‘logipwd’ varchar(20) not null
-> )
-> ;
这种解决方法:
把命令中的 那些单引号(‘ ‘)去掉,这里是不需要使用单引号的,注意如果课本上是有像单引号一样的时候,注意 应该是使用“撇号”,不是“单引号”。单引号和撇号 看似像,实质不一样。