create table apartment(ownerID varchar (5), ownername varchar(25), floor numeric(4,0), primary key (ownerID)); Choose the correct option regarding the above statement

create table apartment(ownerID varchar (5), ownername varchar(25), floor numeric(4,0), primary key (ownerID)); Choose the correct option regarding the above statement Correct Answer It creates a relation with three attributes ownerID, ownername, floor in which ownerID cannot be null.

It creates a relation apartment with three attributes as specified. The attribute ownername cannot be null because it is the primary key of the relation.

Related Questions