标签: sql database oracle sequence
当我尝试运行代码时
create table Projects ( ID_PROJECT integer not null default(ID_PROJECT.nextval) );
为什么我会收到错误“Missing Right Parenthesis”?
答案 0 :(得分:0)
您无法使用默认ID_PROJECT.nextval。为此,您应该创建before insert trigger
ID_PROJECT.nextval
before insert trigger