要建立一个约束,保证用户表()中年龄()必须在16岁以上,下面语句正确的是_________。
A: alter table user
add constraint df_age DEFAULT(16) for age
B: alter table user
add constraint ck_age CHECK(age>16)
C: alter table user
add constraint uq_age UNIQUE(age>16)
D: alter table user
add constraint df_age DEFAULT(16)
A: alter table user
add constraint df_age DEFAULT(16) for age
B: alter table user
add constraint ck_age CHECK(age>16)
C: alter table user
add constraint uq_age UNIQUE(age>16)
D: alter table user
add constraint df_age DEFAULT(16)
举一反三
- 要建立一个约束,保证用户表()中年龄()必须在16岁以上,下面语句正确的是_________。 A: alter table user<br/>add constraint df_age DEFAULT(16) for age B: alter table user<br/>add constraint ck_age CHECK(age>16) C: alter table user<br/>add constraint uq_age UNIQUE(age>16) D: alter table user<br/>add constraint df_age DEFAULT(16)
- 控制台修改表USER,往表中增加一个整形非空字段AGE的语句正确的是( )。 A: ALTER TABLE USER ADD AGE INT NOT NULL B: DROP TABLE USER C: CREATE TABLE IF NOT EXISTS USER D: ALTER TABLE USER AGE INT NOT NULL
- 用下面的语句创建了Student表:CREATE TABLE Student(Sno CHAR(10) primary key,Sname VARCHAR(10),age SMALLINT,Cname VARCHAR(20) );请用ALTER TABLE语句设置age字段默认值为20,正确的语句是()。 A: ALTER TABLE Student ALTER COLUMN age SET DEFAULT 20; B: ALTER TABLE Student CHANGE COLUMN age SET DEFAULT 20; C: ALTER TABLE Student ADD COLUMN age SET DEFAULT 20; D: ALTER TABLE Student DROP COLUMN age SET DEFAULT 20;
- 图书借阅系统中,用户想实现向数据表“借阅”中添加主键,该如何操作( ). A: alter table 借阅 add constraint pk_b primary key(学号) B: alter table 借阅 add constraint pk_b primary key(书号) C: alter table 借阅 add constraint pk_b primary key(学号,书号) D: alter table 借阅 add constraint pk_b unique(学号,书号)
- 设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。() A: alter table stu<br> add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu<br> add constraint fk_sid foreign key(sid) references score(sid); C: alter table score<br> add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score<br> add constraint fk_sid foreign key(sid) references stu(sid);