InterviewSolution
Saved Bookmarks
| 1. |
Which of the following statements does not modify the table?(a) INSERT(b) UPDATE(c) DELETE(d) SELECT |
|
Answer» Correct option is (d) SELECT Easy explanation: In MySQL, the ‘SELECT’ statement is used to display the tables or their components according to some specified conditions and clauses. It does not modify the table unlike the others. |
|