字段not null属性要放在最后面写,最少在类型后面写

报错:create table test2211(id not null bigint ,age timestamp);

正确写法:create table test2211(id bigint not null,age timestamp);

原文地址:https://www.cnblogs.com/panxuejun/p/6140121.html