InterviewSolution
Saved Bookmarks
| 1. |
The statement to change the table name is __________(a) CHANGE(b) CHANGENAME(c) CHANGENM(d) RENAME |
|
Answer» The correct choice is (d) RENAME Easy explanation: To change the name of a table, the keyword ‘RENAME’ can be used. It can be used with the ‘ALTER TABLE’ clause. It can also be used as a statement in itself like ‘RENAME TABLE old_tbl new_tbl’. |
|