gpt4 book ai didi

mysql - 创建 MySQL 表的语法错误

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:15 24 4
gpt4 key购买 nike

也许我对 Postgres 太习惯了,但为什么会出现此错误

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 '{ id int not null AUTO_INCREMENT, email varchar(100) not null, primary key(id' at line 1

我什么时候运行这个?

create table `users`{
id int not null AUTO_INCREMENT,
email varchar(100) not null,
primary key(id)
};

最佳答案

使用圆括号(普通括号)() 而不是大括号:

create table `users` (
id int not null AUTO_INCREMENT,
email varchar(100) not null,
primary key(id)
);

关于mysql - 创建 MySQL 表的语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22873052/

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