InterviewSolution
Saved Bookmarks
| 1. |
Which of the following statements does not modify the table?(a) INSERT(b) UPDATE(c) DELETE(d) SELECTThis question was posed to me in an interview.My question comes from Compound Statements and Statement Delimiters in division Stored Programs of MySQL |
|
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. |
|