答案 0 :(得分:1)
根据8.0版本的this文档,单词groups
是保留关键字,为了使该create语句起作用,我必须引用该关键字,例如:
create table `groups` (
id bigint AUTO_INCREMENT PRIMARY KEY,
title nvarchar(100),
description nvarchar(500),
visibility int,
keywords nvarchar(200),
score bigint default 0,
isDeleted boolean default false,
addedBy bigint not null,
lastModifiedBy bigint not null,
addedOn timestamp not null default current_timestamp,
lastModifiedOn timestamp not null default current_timestamp on update current_timestamp
);