使用此命令更改我的 SQL 表时出现错误
错误信息:
#1064 - 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 'ALTER TABLE `report` AUTO_INCREMENT = 1, 30' at line 2`
有什么想法吗?
使用此命令更改我的 SQL 表时出现错误
错误信息:
#1064 - 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 'ALTER TABLE `report` AUTO_INCREMENT = 1, 30' at line 2`
有什么想法吗?
那你为什么要说AUTO_INCREMENT=1,30
?
它必须是一个数字,而不是逗号分隔的数字列表。
ALTER TABLE report AUTO_INCREMENT=1
或者
ALTER TABLE report AUTO_INCREMENT=30
参考:MySQL