`

powerdesigner 与 Oracle

阅读更多

alter table T_WORDS
   add constraint FK_T_WORDS_USER_WORD_T_USER foreign key (userId)
      references T_USER (id)
     // on update cascade //oracle不支持级联更新
      on delete cascade;

 

constraint PK_T_WORDS primary key clustered (id) //不需要clustered

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics