1.

Consider the following database table :Create table test(one integer,two integer,primary key(one),unique(two),check(one≥1 and ≤10),check(two≥1 and ≤5) );How many data records/tuples atmost can this table contain ?

A. 5
B. 10
C. 15
D. 50
Answer» B. 10


Discussion

No Comment Found