gpt4 book ai didi

mysql - 以下 MySQL create 语句有什么问题?

转载 作者:行者123 更新时间:2023-11-29 08:25:19 24 4
gpt4 key购买 nike

我正在努力在 MySQL 中创建这个简单的表:

create table events (
id int,
when timestamp not null,
summary varchar(256) not null,
description varchar(500) not null,
owner int not null,
attendee int not null,
PRIMARY KEY(id),
FOREIGN KEY(owner) REFERENCES calendar_users(id),
FOREIGN KEY(attendee) REFERENCES calendar_users(id)
);

FK的描述很好,PK的说法也很好。然而,MySQL 由于某种原因似乎在第三行出现了问题。有人可以帮我吗?谢谢。

最佳答案

when 是保留字。

要将其用作名称,请用反引号括起来。

关于mysql - 以下 MySQL create 语句有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18129737/

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