InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the MERGE statement in SQL? |
|
Answer» The MERGE statement allows conditional update or insertion of data into a database table. It performs an UPDATE if the rows exists, or an INSERT if the row does not exist. |
|