标签:date value select 添加 bsp match from 表名 过程
merge into 表名 a
using(
select
from
where
group by
) on (
条件
)
--如果条件成立,执行更新
when matched then
update set 只需更改条件即可
--如果条件不成立,执行添加
when not matched then
insert (
) values(
);
commit;
标签:date value select 添加 bsp match from 表名 过程
原文地址:http://www.cnblogs.com/gaomanito/p/7998462.html