当前位置: 代码迷 >> 综合 >> mysql删除数据表遇到错误#1064(42000)
  详细解决方案

mysql删除数据表遇到错误#1064(42000)

热度:79   发布时间:2023-12-22 10:07:48.0

在linux mysql下执行drop table table_name命令时遇到

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 near 'table case' at line 1

原因:与mysq保留关键字冲突
解决办法:使用反引号将表名扩起来,
这里写图片描述
其他语句这一遇到这个问题可通用。

  相关解决方案