字段not null属性要放在最后面写,最少在类型后面写
报错:create table test2211(id not null bigint ,age timestamp);
正确写法:create table test2211(id bigint not null,age timestamp);
报错:create table test2211(id not null bigint ,age timestamp);
正确写法:create table test2211(id bigint not null,age timestamp);