是的,这是一个旧的数据库(我们正在迁移过程中).不知何故,phpMyAdmin让用户创建一个带有'的表.
name:type_save'
但是,我现在似乎无法放弃那张桌子.我从命令行试过这个:
mysql> drop table "type_save\'";
ERROR 1064: You have an error in your SQL syntax near '"type_save\'"' at line 1
mysql> drop table "type_save'";
ERROR 1064: You have an error in your SQL syntax near '"type_save'"' at line 1
mysql> drop table `type_save'`;
'>
Run Code Online (Sandbox Code Playgroud)
你怎么逃脱这个?
谢谢...