Saved Bookmarks
| 1. |
While creating table ‘customer’, Rahul forgot to add column ‘price’. Which command is used to add new column in the table. Write the command to implement the same. |
|
Answer» ALTER TABLE CUSTOMER ADD PRICE NUMBER (10, 2). |
|