百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 优雅编程 > 正文

Oracle 10g中MERGE INTO四个新特性

sinye56 2024-09-29 22:08 5 浏览 0 评论

merge into是一个dml语句,也需要通过rollback和commit 结束事务。

  1. UPDATE或INSERT子句可以二选一。

10g之前必须insert into和update都要存在,不是update就是insert,只能二选一。而10g里就是可选了。

比如下面的例子,可以只存在update或者insert

merge into oldproducts op using newproducts np on (op .product_id = np.product_id)

when matched then

update set op.product_name = np.product_name

以上例子说明有匹配的时候就更新,不匹配的情况下就不处理了。

2. UPDATE和INSERT子句可以加上WHERE子句

这也是一个功能性的改进,这个where的作用是一个过滤的条件,加入一些额外的条件,对只对满足where条件的进行update和insert

merge into oldproducts op using (select * from newproducts) np on (op.product_id = np.product_id)

when matched then

update set op.product_name = np.product_name where np.product_name like 'LV%'

insert里也可以加入where,比如

merge into oldproducts op using (select * from newproducts) np on (op.product_id = np.product_id)

when matched then

update set op.product_name = np.product_name where np.product_name like 'LV%'

when not matched then

insert values(np.product_id, np.product_name, np.category) where np.product_name like 'LV%'

3. 在ON条件中使用常量过滤条件来insert所有的行到目标表中,不需要连接源表和目标表

merge into oldproducts op using (select * from newproducts) np on (1=0)

when matched then

update set op.product_name = np.product_name

when not matched then

insert values(np.product_id, np.product_name, np.category)

4. UPDATE子句后面可以通过DELETE子句来去除一些不需要的行,delete只能和update配合,从而达到删除满足where条件的子句的纪录

merge into oldproducts op using (select * from newproducts) np on (p.product_id = np.product_id)

when matched then

update set op.product_name = np.product_name delete where op.product_id = np.product_id where np.product_name like 'LV%'

when not matched then

insert values(np.product_id, np.product_name, np.category)

相关推荐

RHEL8和CentOS8怎么重启网络

本文主要讲解如何重启RHEL8或者CentOS8网络以及如何解决RHEL8和CentOS8系统的网络管理服务报错,当我们安装好RHEL8或者CentOS8,重启启动网络时,会出现以下报错:...

Linux 内、外网双网卡路由配置

1.路由信息的影响Linux系统中如果有多张网卡的情况下,如果路由信息配置不正确,...

Linux——centos7修改网卡名

修改网卡名这个操作可能平时用不太上,可作为了解。修改网卡默认名从ens33改成eth01.首先修改网卡配置文件名(建议将原配置文件进行备份)...

CentOS7下修改网卡名称为ethX的操作方法

?Linux操作系统的网卡设备的传统命名方式是eth0、eth1、eth2等,而CentOS7提供了不同的命名规则,默认是基于固件、拓扑、位置信息来分配。这样做的优点是命名全自动的、可预知的...

Linux 网卡名称enss33修改为eth0

一、CentOS修改/etc/sysconfig/grub文件(修改前先备份)为GRUB_CMDLINE_LINUX变量增加2个参数(net.ifnames=0biosdevname=0),修改完成...

CentOS下双网卡绑定,实现带宽飞速

方式一1.新建/etc/sysconfig/network-scripts/ifcfg-bond0文件DEVICE=bond0IPADDR=191.3.60.1NETMASK=255.255.2...

linux 双网卡双网段设置路由转发

背景网络情况linux双网卡:网卡A(ens3)和网卡B(...

Linux-VMware设置网卡保持激活

Linux系统只有在激活网卡的状态下才能去连接网络,进行网络通讯。修改配置文件(永久激活网卡)...

VMware虚拟机三种网络模式

01.VMware虚拟机三种网络模式由于linux目前很热门,越来越多的人在学习linux,但是买一台服务放家里来学习,实在是很浪费。那么如何解决这个问题?虚拟机软件是很好的选择,常用的虚拟机软件有v...

Rocky Linux 9/CentOS Stream 9修改网卡配置/自动修改主机名(实操)

推荐...

2023年最新版 linux克隆虚拟机 解决网卡uuid重复问题

问题描述1、克隆了虚拟机,两台虚拟机里面的ip以及网卡的uuid都是一样的2、ip好改,但是uuid如何改呢?解决问题1、每台主机应该保证网卡的UUID是唯一的,避免后面网络通信有问题...

Linux网卡的Vlan配置,你可能不了解的玩法

如果服务器上连的交换机端口已经预先设置了TRUNK,并允许特定的VLAN可以通过,那么服务器的网卡在配置时就必须指定所属的VLAN,否则就不通了,这种情形在虚拟化部署时较常见。例如在一个办公环境中,办...

Centos7 网卡绑定

1、切换到指定目录#备份网卡数据cd/etc/sysconfig/network-scriptscpifcfg-enp5s0f0ifcfg-enp5s0f0.bak...

Linux搭建nginx+keepalived 高可用(主备+双主模式)

一:keepalived简介反向代理及负载均衡参考:...

Linux下Route 路由指令使用详解

linuxroute命令用于显示和操作IP路由表。要实现两个不同子网之间的通信,需要一台连接两个网络的路由器,或者同时位于两个网络的网关来实现。在Linux系统中,设置路由通常是为了解决以下问题:该...

取消回复欢迎 发表评论: