InterviewSolution
Saved Bookmarks
| 1. |
Which keyword in the UPDATE statement is used to assign values to columns?(a) ASSIGN(b) SET(c) MARK(d) GET |
|
Answer» The correct option is (b) SET To explain I would say: The ‘UPDATE’ statement in MySQL has its own syntax. The ‘SET’ keyword is followed by an assignment list which indicates the set of columns whose value needs to be updated with a specified value. |
|