Glossary

MERGE INTO

the target table that will be modified. 2. **USING** -- the source dataset. This can be a table, a view, a subquery, or a VALUES clause. 3. **ON** -- the matching condition. This determines whether a source row "matches" a target row. 4. **WHEN MATCHED THEN UPDATE** -- what to do when the ON conditi

Learn More

Related Terms