+2 votes
in Class 12 by kratos

Ariya wants to add another column'Gender' in the already existing table 'CUSTOMERS'. She has written the following statement. However, it has errors. Rewrite the correct statement.

'MODIFY TABLE CUSTOMERS GENDER' char(1);

1 Answer

+6 votes
by kratos
 
Best answer

ALTER TABLE CUSTOMERS

ADD GENDER char(l);

...