gpt4 book ai didi

php - 在mysql中已经创建表后如何使用自动增量命令?

转载 作者:行者123 更新时间:2023-11-29 04:14:55 25 4
gpt4 key购买 nike

<分区>

我有一个名为 employee 的表,它包含三列 empid(即 int)、empname( varchar) 和salary(int)。我已经制作了表格并插入了一些数据。现在我想让 empid 自动递增。

我使用了命令:

ALTER TABLE employee ADD AUTO_INCREMENT(empid);

但是我得到以下错误:

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 '(empid)' at line 1

25 4 0
文章推荐: MySQL 8 不会在日志文件中的 "Data dictionary upgrading"之后启动
文章推荐: java - `return || ` 如何成为返回对象的方法的有效返回语句?