InterviewSolution
Saved Bookmarks
| 1. |
How to add one column "City" to this table ? IDNameKevinAshArgonD'SouzaSelect one:O a.UPDATE TABLE Person ADD City varchar2Ob.ALTER TABLE Person ADD City varchar2Ос.INSERT TABLE Person ADD City varchar2O d.UPDATE TABLE Person ADD COLUMN City varchar2 |
|
Answer» ALTER TABLE Person ADD City VARCHAR (2);Explanation:SINCE you need to interfere with the structure of the table ALTER COMMAND should be USED. |
|