InterviewSolution
Saved Bookmarks
| 1. |
Which of the following commands do we use to delete a relation (R) from a database?(a) drop table R(b) drop relation R(c) delete table R(d) delete from R |
|
Answer» Correct choice is (a) drop table R Best explanation: The drop table command is used to delete a relation from a database whereas the delete table removes all the tuples from a re |
|