成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

SQL創(chuàng)建表外鍵語句 sql創(chuàng)建外鍵語句?

sql創(chuàng)建外鍵語句?1. Create test main table(class table) class)、Create table test class(classid number,class

sql創(chuàng)建外鍵語句?

1. Create test main table(class table) class)、

Create table test class(classid number,classuname VARCHAR2(20))

2ustudent)、

Create table testustudent(stuid number,stuuname VARCHAR2(200),classuid number)

3。主表(class table)uclass)添加唯一主鍵,

alter table testuclass

添加約束pkuclassuid主鍵(classuid)

4。子表(student表) student)創(chuàng)建外鍵,

alter table test student

add constraint fk class id外鍵(class id)

引用test class(class id)