1

有一个使用 CMS 自动创建的数据库。数据库名称是“/”,不带引号。当尝试删除它时,这会出现。

mysql> DROP DATABASE /; 
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 '/' at line 1

mysql Ver 14.14 Distrib 5.6.24,用于使用 EditLine 包装器的 debian-linux-gnu (x86_64)

谢谢您的帮助。

4

1 回答 1

2

你需要反引号:

DROP DATABASE `/`; 
于 2015-05-24T17:18:02.283 回答