mysql语法错误

z9gpfhce  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(349)

我在docker容器中有一个mysql数据库。入口点执行创建数据库的脚本和创建表的脚本。
除了一张table以外,一切都很好。

use db;

... creating other tables

CREATE TABLE mediametadata
(
id bigint not null  primary key,
title VARCHAR not NULL,
artist VARCHAR not NULL,
album VARCHAR,
releaseYear bigint,
mediaId bigint NOT NULL,
constraint fk__pk_metadata_objectid
        foreign key (id) references objectid (id),

constraint fk__metadata_media_id
        foreign key (mediaId) references media (id)
)
;

记录到控制台的错误为

mysql_1  | ERROR 1064 (42000) at line 150: 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 'not NULL,
mysql_1  | artist VARCHAR not NULL,
mysql_1  | album VARCHAR,
mysql_1  | releaseYear bigint,
mysql_1  | mediaId bi' at line 4

第150行是后面的开放式括号 CREATE TABLE mediametadata mysql版本:8.0.3-rc-log
主持人:debian jessie
我开始想 year 以及 metadata 可能是保留关键字,所以我重命名了表和 year 列,但错误仍然存在。

xcitsw88

xcitsw881#

由@bill karwin在第一条评论中回答varchar需要长度[varchar(number)]

相关问题