MySQL 错误代码:在 MySQL Workbench 中创建 TABLE 期间出现 1064

MySQL error code: 1064 during CREATE TABLE in MySQL Workbench

尝试在 MySQL workbench 中创建 table,我不断收到此错误消息“错误代码:1064。您的 SQL 语法有误; 检查与您的 MySQL 服务器版本相对应的手册,了解在第 7 行“)”附近使用的正确语法

这是我输入的内容...我做错了什么?

create table members (
id varchar (255) primary key,
pswd varchar(255) not null, 
email varchar(255) not null,
member_since timestamp default now() not null,
payment_due decimal (6, 2) not null default 0,
)
;

末尾多了一个逗号

只需删除它,一切正常。

create table members (
id varchar (255) primary key,
pswd varchar(255) not null, 
email varchar(255) not null,
member_since timestamp default now() not null,
payment_due decimal (6, 2) not null default 0)

Db<>fiddle