如何DROP DATABASE命名为“/”

时间:2015-05-24 17:12:57

标签: mysql database syntax drop-database

使用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使用EditLine包装器为debian-linux-gnu(x86_64)分发5.6.24

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

你需要反叛:

DROP DATABASE `/`;