InterviewSolution
Saved Bookmarks
| 1. |
Which of the following cannot be used to modify the data in a database(a) update(b) insert(c) delete(d) dropThe question was asked in semester exam.This interesting question is from Modification of Database topic in chapter Introduction to Relational Model and Sql of RDBMS |
|
Answer» CORRECT OPTION is (d) drop Explanation: The drop KEYWORD is USED to delete the entire relation LEAVING no trace of it in the memory. Thus it cannot be used to edit the data in the relation. |
|