首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

设立主外建

2014-04-27 
设置主外建主键 alter table XXX add constraint PK_XXX primary key(ID)外键 alter table XXX add const

设置主外建
主键 alter table XXX add constraint PK_XXX primary key(ID);

外键 alter table XXX add constraint FK_XXX__YYY   foreign key(YYY_ID) references YYY(ID) ON DELETE  CASCADE;

热点排行