Identify the correctly constructed ALTER TABLE statement that adds the column address as a VARCHAR (100) to the customer table.

a) ALTER TABLE customer ADD home_address VARCHAR(100);
b) ALTER TABLE customer ADD address VARCHAR(100);
c) ALTER TABLE customer DROP address VARCHAR(100);
d) ALTER TABLE customer ADD address



Answer :

Other Questions