在设计表StudentInfo时,Sage列的值只能在18-25之间,需要给Sage列设置()约束。
A: 主键
B: 外键
C: 唯一
D: CHECK
A: 主键
B: 外键
C: 唯一
D: CHECK
举一反三
- 中国大学MOOC: 在设计表StudentInfo时,Sage列的值只能在18-25之间,需要给Sage列设置( )约束。
- 利用SQL Server Management Studio创建数据库表时,为列“Sage”添加检查约束,要求Sage在18-25岁之间,在“CHECK约束”的设置窗口中,表达式应该输入( )。 A: Sage<=25 && Sage>=18 B: 18<=Sage<=25 C: Sage>=18 And Sage<=25 D: Sage>=18 OR Sage<=25
- 如果想给某字段sage施加列值唯一的约束,应该如何表示?( ) A: Sage smallint unique B: Sage smallint not null C: Sage smallint check(sage>=18) D: Sage smallint primary key
- 如果想给某字段sage施加列值唯一的约束,应该如何表示? A: Sage smallint not null B: Sage smallint unique C: Sage smallint check(sage>=18) D: Sage smallint primary key
- 中国大学MOOC: 利用SQL Server Management Studio创建数据库表时,为列“Sage”添加检查约束,要求Sage在18-25岁之间,在“CHECK约束”的设置窗口中,表达式应该输入( )。