用来判断执行操作为insert还是update
格式:
merge into table_name table_alias
using (table|view|sub_query) alias on(join condition)
when matched then
update set col1=col_val1,col2=col2_val2,...
when not matched then
insert (column_list) values(column_values);