(TCO 3) In the following command, the primary key constraint is created at the _____ level.
(TCO 3) In the following command, the primary key constraint is created at the _____
level.
CREATE TABLE vendors
(
vendorID INT,
vendorName VARCHAR(20),
CONSTRAINT vendor_pk PRIMARY KEY (vendorID)
); (Points : 4)
A table
B column
C database
D alter