Question:There is a table t upon which a primary key constraint by the name pk is applied. What will be the correct syntax to drop the constraint?
A Alter table t drop primary key
B Alter table t drop constraint pk
C Drop primary key constraint on table t
D Alter table t delete primary key
+ AnswerB
+ Report