Caused by: org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "create table task_result (ID BIGINT AUTO_INCREMENT primary key comment '结果id', task_id varchar(32) null comment '任务id', enter_at BIGINT comment '结果执行的开始时间', leave_at BIGINT comment '结果执行的结束时间', corrupt varchar(4) not null comment '数据是否缺失', create_time datetime null [*]timestamp default current_timestamp comment '创建时间', update_time datetime null current_timestamp on update current_timestamp comment '更新时间', create_by varchar(64) not null comment '创建者', update_by varchar(64) null comment '更新者' )"; expected "AS, DEFAULT, GENERATED, ON UPDATE, AUTO_INCREMENT, DEFAULT ON NULL, NULL_TO_DEFAULT, SEQUENCE, SELECTIVITY, COMMENT, CONSTRAINT, COMMENT, PRIMARY KEY, UNIQUE, NOT NULL, NULL, CHECK, REFERENCES, AUTO_INCREMENT, ,, )"; SQL statement: create table task_result (ID BIGINT AUTO_INCREMENT primary key comment '结果id', task_id varchar(32) null comment '任务id', enter_at BIGINT comment '结果执行的开始时间', leave_at BIGINT comment '结果执行的结束时间', corrupt varchar(4) not null comment '数据是否缺失', create_time datetime null timestamp default current_timestamp comment '创建时间', update_time datetime null current_timestamp on update current_timestamp comment '更新时间', create_by varchar(64) not null comment '创建者', update_by varchar(64) null comment '更新者' ) [42001-214]
时间: 2024-03-31 20:32:38 浏览: 210
SQL 错误提示
这是一个关于创建数据表的 SQL 语句,但是出现了语法错误。根据错误信息,期望的是 AS、DEFAULT、GENERATED、ON UPDATE、AUTO_INCREMENT、DEFAULT ON NULL、SEQUENCE、SELECTIVITY、COMMENT、CONSTRAINT、PRIMARY KEY、UNIQUE、NOT NULL、NULL、CHECK、REFERENCES、AUTO_INCREMENT、"," 或 ")" 等关键字,但实际上出现了一个不被期望的 "*" 符号。建议检查一下该 SQL 语句中的语法是否正确。
阅读全文