29.Which two statements are true regarding constraints?
A.A foreign key cannot contain NULL values.
B.The column with a UNIQUE constraint can store NULLS .
C.A constraint is enforced only for an INSERT operation on a table.
D.You can have more than one column in a table as part of a primary key.
答案:BD
A.A foreign key cannot contain NULL values.
B.The column with a UNIQUE constraint can store NULLS .
C.A constraint is enforced only for an INSERT operation on a table.
D.You can have more than one column in a table as part of a primary key.
答案:BD
A,B,C 查看28题
D:正确
SQL> create table test ( a number,b number,constraints pk_ab primary key(a,b));
Table created