Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试向现有表中添加一列,其类型为整数,约束为 11 个数字
我正在运行这个命令:
ALTER TABLE pages ADD COLUMN order INTEGER(11);
但我收到错误 1064 (42000)
order是 MySQL 中的保留字。利用
order
ALTER TABLE pages ADD COLUMN `order` INTEGER(11)
如果您引用保留字,则允许它们作为标识符
或者只是选择一个不同的名称。