1

我正在尝试删除带有问号的列:

ALTER TABLE player DROP is_playing?;

结果:

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 2

你知道其他的丢弃方法吗?

谢谢

4

1 回答 1

5

使用反引号来转义具有特殊名称或MySQL中保留关键字名称的列或表名称。

并使用column关键字:

ALTER TABLE player DROP column `is_playing?`;
于 2013-08-10T11:18:00.587 回答