SQL語句設置主外鍵約束

alter table 外鍵表名 add constraint 約束名稱 foreign key(外鍵字段)  references 主鍵表名(約束列名)  spa 如表A中的Ids是主鍵,要約束表B中的Aid列,那麼語句應該是:table alter table B add constraint A_B_Ids foreign key(Aid)  references A(Ids)  tab
相關文章
相關標籤/搜索