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

it2022-05-05  151

报错: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


最新回复(0)