InterviewSolution
Saved Bookmarks
| 1. |
Why Does The Following Command Give A Compilation Error? |
|
Answer» DROP TABLE &TABLE_NAME; VARIABLE NAMES should start with an alphabet. Here the table name STARTS with an '&' symbol. DROP TABLE &TABLE_NAME; Variable names should start with an alphabet. Here the table name starts with an '&' symbol. |
|