Saved Bookmarks
| 1. |
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); |
|
Answer» ALTER TABLE CUSTOMERS ADD GENDER char(l); |
|