gpt4 book ai didi

mysql - MySQL使用auto_increment时出错

转载 作者:行者123 更新时间:2023-11-29 09:10:51 24 4
gpt4 key购买 nike

我在 MySQL 中使用 auto_increment 时遇到一些错误。

代码在这里:

user_id bigint(20) unsigned not null auto_increment=1000

但是当我尝试

user_id bigint(20) unsigned not null auto_increment

它有效。为什么?

最佳答案

这应该有效:


create table test1 (
id int unsigned not null auto_increment,
primary key (id)
)auto_increment=100;

关于mysql - MySQL使用auto_increment时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5616142/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com