Page 1 of 1

create table apartment(ownerID varchar (5), ownername varchar(25), floor numeric(4,0), primary key (ownerID)); Choose th

Posted: Thu Jul 14, 2022 8:53 am
by answerhappygod
a) The statement is syntactically wrong
b) It creates a relation with three attributes ownerID, ownername, floor in which floor cannot be null.
c) It creates a relation with three attributes ownerID, ownername, floor in which ownerID cannot be null.
d) It creates a relation with three attributes ownerID, ownername, floor in which ownername must consist of at least 25 characters.