OceanBase v4.2 特性解析:新增三种临时表功能,更多的Oracle语句兼容

devtools/2024/12/22 18:37:33/

特性说明

在Oracle模式下,OceanBase临时表已经实现了基本的create、select、insert、delete、update等功能。为了满足更多客户的需求,OceanBase正在扩展临时表的功能,例如支持merge into和insert all操作。merge into允许用户将源表中的数据行以更新或插入的方式合并到目标表中,而insert all则允许用户一次性将数据插入到多个目标表中。

在OceanBase 4.2.2 版本中,OceanBase对merge into、insert all临时表的功能进行了支持,同时还支持了insert、update、delete包含临时表的视图。下文详细介绍这三种使用场景。

使用场景

merge into临时表

临时表可作为merge into的目标表、源表,若merge into的目标表、源表是视图,视图中也可包含临时表。

下面对功能进行举例说明。

首先创建临时表temp1和非临时表t1。

create global temporary table temp1(c1 int,c2 int) on commit preserve rows;
create table t1(c1 int, c2 int);

然后向temp1和t1中插入一些数据。

insert into temp1 values(1,1),(2,2),(5,5);
insert into t1 values(1,2),(2,4),(3,6);

使用t1作为源表,temp1作为目标表,做merge into操作,将t1表中的数据和temp1表中的数据进行匹配,对匹配成功的temp1表数据进行更新,将匹配不成功的t1表数据插入temp1表中。

merge into temp1 using t1 on (temp1.c1=t1.c1)when matched then update set temp1.c2=t1.c2when not matched then insert (c1,c2) values (t1.c1,t1.c2);

最后查看merge into临时表的结果,如下。

select * from temp1;
+------+------+
| C1   | C2   |
+------+------+
|    1 |    2 |
|    2 |    4 |
|    5 |    5 |
|    3 |    6 |
+------+------+

insert all临时表

临时表可作为insert all的目标表、源表。

首先创建临时表temp1和非临时表t1, t2。

create global temporary table temp1(c1 int,c2 int) on commit preserve rows;
create table t1(c1 int, c2 int);
create table t2(c1 int, c2 int);

然后向temp1, t1, t2中插入一些数据。

insert into temp1 values(1,1),(2,2);
insert into t1 values(1,2),(2,4);
insert into t2 values(3,5);

使用t2作为源表,temp1和t1作为目标表,做insert all操作,将t2表中的数据插入temp1和t1表中。

insert allinto temp1 (c1, c2) values (v1, v2)into t1 (c1, c2) values (v1, v2)select c1 as v1, c2 as v2 from t2;

最后查看insert all临时表的结果,如下。

select * from temp1;
+------+------+
| C1   | C2   |
+------+------+
|    1 |    1 |
|    2 |    2 |
|    3 |    5 |
+------+------+select * from t1;
+------+------+
| C1   | C2   |
+------+------+
|    1 |    2 |
|    2 |    4 |
|    3 |    5 |
+------+------+

insert、update、delete包含临时表的视图

可以对包含临时表的视图进行insert、update、delete操作。

首先创建临时表temp1和包含临时表的视图v1。

create global temporary table temp1(c1 int,c2 int) on commit preserve rows;
create view v1 as select * from temp1;

对视图进行insert操作。

insert into v1 values (3,4);
insert into v1 values (4,5);

查看insert的结果,如下。

select * from temp1;
+------+------+
| C1   | C2   |
+------+------+
|    3 |    4 |
|    4 |    5 |
+------+------+select * from v1;
+------+------+
| C1   | C2   |
+------+------+
|    3 |    4 |
|    4 |    5 |
+------+------+

对视图进行update操作。

update v1 set c1 = 5 where c2 = 4;

查看update的结果,如下。

select * from temp1;
+------+------+
| C1   | C2   |
+------+------+
|    5 |    4 |
|    4 |    5 |
+------+------+select * from v1;
+------+------+
| C1   | C2   |
+------+------+
|    5 |    4 |
|    4 |    5 |
+------+------+

对视图进行delete操作。

delete from v1 where c1 = 4;

查看delete的结果,如下。

select * from temp1;
+------+------+
| C1   | C2   |
+------+------+
|    5 |    4 |
+------+------+select * from v1;
+------+------+
| C1   | C2   |
+------+------+
|    5 |    4 |
+------+------+

http://www.ppmy.cn/devtools/46330.html

相关文章

无线网络SCI期刊,中科院4区,录用难度不大,出版稳定

一、期刊名称 Wireless Networks 二、期刊简介概况 期刊类型:SCI 学科领域:计算机科学 影响因子:3.0 中科院分区:4区 三、期刊征稿范围 无线通信革命正在给数据网络、电信带来根本性的变化,并使集成网络成为现实…

关于找暑期实习后的一些反思

日期 2024年6月3日 写在前面:距离研究生毕业还有9个月,前端时间一直在不停地投简历,不停地刷笔试题,不停地被拒绝,今天悬着的心终于死透了,心情还是比较糟糕的,可能唯一的安慰就是一篇小论文终于…

教育小程序的性能优化:从前端到后端的综合提升策略

随着教育小程序的普及,其性能直接影响用户体验和教学效果。本文将从前端到后端,详细探讨教育小程序的性能优化策略,帮助开发者打造高效、流畅的教育应用。 一、前端性能优化策略 代码优化 减少HTTP请求:合并CSS、JavaScript文件…

驱动开发学习之新旧字符设备接口,自动创建设备的点灯

1.前言 本章将介绍新旧字符设备接口,以及自动创建设备节点的点灯实验。 2.实验原理介绍 2.1.寄存器知识 学习过单片机的兄弟都知道,点灯有以下步骤: (1)开启相应的GPIO时钟 (2)如果需要配置复用&…

【Qt秘籍】[002]-开始你的Qt之旅-下载

一、Qt的开发工具有哪些? Qt的开发工具概述Qt支持多种开发工具,其中最常见的开发工具是 1.QtCreator 【易上手/有少量bug/适合新手】 2.VisualStudio 【功能强大/易出错/需要更多额外配置】 3.Eclipse 【清朝老兵IDE/不建议使用】 【注意&#xff1…

每日一题——Java编程练习题

题目: 给你一个整数 x 。如果 x 是一个回文整数,打印 true ,否则,返回 false 。 解释:回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 例如&#xff0c…

命令行解析器浅解

1、什么叫解析器? 解析器(parser)是一种程序或组件,用于分析输入的数据,并将其转换为更易于处理的格式。解析器在计算机科学中有广泛的应用,特别是在编译器、解释器、自然语言处理和数据格式转换等领域。 1…

记录jenkins pipeline ,git+maven+sonarqube+打包镜像上传到阿里云镜像仓库

1、阶段视图: 2、准备工作 所需工具与插件 jdk:可以存在多版本 maven:可以存在多版本 sonar-scanner 凭证令牌 gitlab:credentialsId sonarqube:配置在sonarqube208服务中 3、jenkinsfile pipeline {agent anystages {stage(从…