我想知道是否可以命名列上的NOT NULL约束?就像使用check约束一样。
NOT NULL
谢谢,亚历克斯。
发布于 2011-10-19 10:51:19
create table table1(column1 number constraint column1_not_null not null);
https://stackoverflow.com/questions/7815389
相似问题