数据库常用语句和函数

----update update()函数主要注意的是后面的where限制条件
--例子:
update tab_a a set a.v1 = (select b.v1 from tab_b b where a.key1=b.key1 and ...),...
where exists (select 'x'  from tab_b b where a.key1=b.key1 and ...);

update tab_a a  set (a.v1,a.v2) = (select b.v1,b.v2 from tab_b where a.key1=b.key1 and ...)
where exists (select 'x'  from tab_b b where a.key1=b.key1 and ...);

----merge into ;
merge into a table_a ----要更新或插入的目标数据
using (select ... from ... where ...) table_b  ---更新或插入的源数据
on (table_a.key1 = table_b.key1 and table_a.key2 = table_b.key2 ....)
----判断更新或插入的条件,只是两表之间的关联,如果b表内部有限制,直接在源数据上修改
when matched then     ---当on 里面的条件成立有结果的时候
    update set table_a.v1 = table_b.v1 , table_a.v2 = table_b.v2
when not matched then   ---当on里面的条件成立无结果的时候
    insert  (table_a.v1,table_a.v2...)
    values    (table_b.v1,table_b.v2...);  ----matched 和 not matched 可以只用一个,也可以同时都用

--例子:    
create table test_a (
       a varchar2(5),
       b varchar2(5),
       c varchar2(5)
);

alter table test_a
  add constraint PK_TEST_A primary key (a);

create table test_b (
       a varchar2(5),
       b varchar2(5),
       c varchar2(5)
);

alter table test_b
  add constraint PK_TEST_B primary key (a);

insert into test_b (
select '1','2','3' from dual
union
select '2','3','4' from dual);

insert into test_b (
select '1','1','1' from dual
union
select '3','4','5' from dual);

merge into test_a a
using test_b b
on (a.a=b.a)
when matched then
    update set a.b=b.b,a.c=b.c
when not matched then
    insert (a.a,a.b,a.c)
    values(b.a,b.b,b.c);
    
--merge into 和 update 比较,merge into  是查出整批结果后一起更新,update 是查出一个结果后去更新,直到所有数据更新完成,
--因此,merge into 无法找到相关更新的记录数,而update可以,但是,因为update 更新一条数据后,需要重新判断where 的限制条件,所以merge into 的执行效率是update 的将近10倍

----asciistr()
--将字符串转换成ascii字符串
--例子:
select asciistr('我是 好人 a') from dual ;
--该转换函数可以用来判断字符串是否有中文,如果是中文字符,那转换后,就会带‘/’ ,需要注意的是,如果本身就带‘/’,那转换后还是有‘/’,
--所以要先去掉原先的‘/’,再做判断
--例子:
select asciistr('/ asd我是 ?!@#$%\ ') from dual where --replace(asciistr('/ asd我是 ?!@#$%\ '),'\ ',' ') -- like '%\%' ;
where asciistr(replace('/ asd我是 ?!@#$%\ ','\ ',' ')) like '%\%';

---chr()
---chr()函数是将ascii码->字符,对应关系参照ascii编码表
select chr(32) from dual ;

----ascii()
----ascii()函数是chr()函数的反函数,是将字符转换成ascii码
select a from (
select chr(10) a from dual ) where ascii(a) ='10';

----replace()
--替换函数,replace(a,b,c) 将字符串a中所有的b字符或字符串替用c字符或字符串替换,也可以去空格
select replace('asd asaa' ,' ','') from dual ;

----trim()
---去空格函数,需要注意的是,trim函数,只是去掉左右两端的空格,且只能是用space敲打的空格,如果是其他形式的空格,如回车,是无法去掉的
select trim(' 我想做 个 好人 ') from dual ;

--去除其他形式的空格
--1.先判断这个空格的实际对应的ascii码值,ascii码32对应的是正常的空格,小于32,对应的是其他形式的空格
select ascii(substr('abcd ',5,1)) from dual ;
--2.用replace 加存在这个ascii码值对应的字符替换成空
select replace('abcd ',chr(ascii(substr('abcd ',5,1))),'') from dual ;

----fn_jqzd(),截取函数,参数有3个,字符串和分割符和位数
select fn_jqzd('asda|1231','|',1), fn_jqzd('asda|1231','|',2) from dual ;

--查看一个表的主键
select a.constraint_name,  a.column_name
 from user_cons_columns a, user_constraints b
 where a.constraint_name = b.constraint_name
 and b.constraint_type = 'P'
and a.table_name = 'TAB';

---重复数据只保留一条 ,rowid 是唯一标志物理位置的一个id,因此,只要保留一个最大的,或者最小的rowid
--根据主键分组,取每组的最大或最小的rowid,保留下来,就行了

delete from  table_a  where (key1, rowid) not  in
(select key1, max(rowid) from table_a group by key1);
--比较下面的写法
delete from table_a where key1 in (select key1 from table_a group by key1 having count(*)>1) and rowid
 not in (select max(rowid) from table_a group by key1 having count(*)>1);
 
delete from table_a where key1 in (select key1 from table_a group by key1 having count(*)>1) and rowid
 not in (select max(rowid) from table_a group by key1);

delete from  table_a  where  rowid not  in
(select  max(rowid) from table_a group by key1);
--rowid 和 rownum  ,rowid 是唯一标志物理位置的一个id,rownum 是对结果集的编排顺序
--rownum 始终是从1开始,所以rownum>2永远为假,是无法查出数据的,如果要用,要么实例化,要么用rownumber() over
--例1:
select rownum ,t.a from (
select '1' a from dual
union all
select '2' a from dual
)t where rownum>=2;
--例2:
select rn,a from (
select rownum rn,t.a from (
select '1' a from dual
union all
select '2' a from dual
)t) where rn>=2;

----数据库闪回语句(闪回到固定时间点上)
alter table jw_pk_kbcdb enable row movement;
select count(*) from jw_pk_kbcdb as of timestamp to_timestamp('2016-10-06 9:30:00','yyyy-mm-dd hh24:mi:ss');
flashback table jw_pk_kbcdb to timestamp to_timestamp('2016-10-06 9:30:00','yyyy-mm-dd hh24:mi:ss');

--查看死锁情况(如果存在死锁情况,执行最后一个text字段下的内容解锁)
SELECT   A.OWNER, A.OBJECT_NAME,B.XIDUSN,B.XIDSLOT,B.XIDSQN,B.SESSION_ID,B.ORACLE_USERNAME,B.OS_USER_NAME,B.PROCESS,B.LOCKED_MODE,C.MACHINE,C.STATUS,         
C.SERVER,C.SID,C.SERIAL#,C.PROGRAM,'alter   system   kill   session   '''||sid||','||serial#||''';' text       
FROM   ALL_OBJECTS   A,V$LOCKED_OBJECT   B, SYS.GV_$SESSION   C     
WHERE   (A.OBJECT_ID=B.OBJECT_ID)AND(B.PROCESS=C.PROCESS)ORDER   BY   1,2 ;

--闪回被drop掉的表
flashback table test_drop to before drop;

备注:随笔中内容来源于网上资料整理,仅供参考。

Oracle or Question Solve(二)的更多相关文章

  1. Oracle or Question Solve(一)

    Oracle查看版本命令:select * from v$version; ORACLE_BASE和ORACLE_HOME路径查看su - oracleecho $ORACLE_BASEecho $O ...

  2. oracle入坑日记<二>认识oracle(含sqlplus基础使用)

    1.SID(数据库实例) 1.1. oracle安装的时候有一项叫[全局数据库名]的填写项,这个就是oracle的SID也是数据库的唯一标识符: 1.2.一个oracle数据库有且只有一个SID(一般 ...

  3. centos 安装oracle 11g r2(二)-----监听配置与创建数据库实例

    centos 安装oracle 11g r2(二)-----监听配置与创建数据库实例 一.监听配置(命令:netca) 1.以 oracle 用户输入命令,启动图形化工具配置监听 [oracle@lo ...

  4. [独孤九剑]Oracle知识点梳理(二)数据库的连接

    本系列链接导航: [独孤九剑]Oracle知识点梳理(一)表空间.用户 [独孤九剑]Oracle知识点梳理(二)数据库的连接 [独孤九剑]Oracle知识点梳理(三)导入.导出 [独孤九剑]Oracl ...

  5. Oracle 数据库基础学习 (二) 学习小例子:创建一个表,记录商品买卖的情况

      运行环境:Oracle database 11g + PL/SQL Developer ex: --创建一个表 create table plspl_test_product( --加入not n ...

  6. Oracle 学习系列之二(会话与事务级临时表和dual表 )

    一. 会话临时表 --创建会话临时表create global temporary table tmp_user_session(user_id int, user_name varchar2(20) ...

  7. Oracle—RMAN备份(二)

    在Oracle  RMAN备份(一)中,对各种文件在RMAN中备份进行了说明, 一.备份集的复制 在RMAN 备份中,可以备份其自己的备份,即备份一个文件放在多个目录下,oralce支持最多备份四个. ...

  8. Oracle使用学习笔记(二)_Sql语句

    一.Sql语句的分类 数据操作语言,简称DML(data manipulation language),如增加,删除,修改,查询数据等 数据定义语言,简称DDL(data defination lan ...

  9. 教师信息管理系统(方式一:数据库为oracle数据库;方式二:存储在文件中)

    方式一: 运行截图 数据库的sql语句: /*Navicat Oracle Data TransferOracle Client Version : 12.1.0.2.0 Source Server ...

随机推荐

  1. AppiumLibrary库倒入后显示红色,日志报错:ImportError: cannot import name 'InvalidArgumentException'

    AppiumLibrary安装后,robotframe worke 倒入后一直显示红色,查看日志报错:ImportError: cannot import name 'InvalidArgumentE ...

  2. iframe的基础应用

    点击top.html里面的按钮,刷新left.html右边的内容 <a href="left.html?id=11111&k=5&b=4"  target=& ...

  3. thymeleaf 下拉选框回显选中

    参考了许多,最后以这种方法实现了.尽管有些愚蠢,初步学习阶段.不知道为什么用th:field会报错.网上有些是用field来解决回显问题的. <select name="positio ...

  4. Mysql 实现基于binlog的主从同步

    工作原理 1.主节点必须启用二进制日志,记录任何修改了数据库数据的事件.2.从节点开启一个线程(I/O Thread)把自己扮演成 mysql 的客户端,通过 mysql 协议,请求主节点的二进制日志 ...

  5. Java稀疏数组

    一.概述 1.概念 2.处理方法 3.示例 原数组如下: 转换为稀疏数组如下: 二.代码 1.主方法 @Testpublic void SparseTest() { // 创建一个原始的二维数组 11 ...

  6. 动态规划——稀疏表求解RMQ问题

    RMQ (Range Minimum/Maximum Query)问题,即区间最值查询问题,是求解序列中的某一段的最值的问题.如果只需要询问一次,那遍历枚举(复杂度O(n))就是最方便且高效的方法,但 ...

  7. [Interview] Bubble sort using singly-linked list

    Question : Bubble sort using singly-linked list 群暉面試題 Idea :  在linked list 交換node與node時, 我們會想用換*next ...

  8. 如何创建 Qt 插件?

    如何创建 Qt 插件? 简单三部曲 定义接口类或接口基类并使用 Q_DECLARE_INTERFACE 宏进行声明 所有的插件都需要继承该基类并继承 QObject(不带界面插件) or QWidge ...

  9. C#设计模式:桥接模式(Bridge Pattern)

    一,桥接模式,直接上代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; u ...

  10. 同一客户端多个git账号的配置

    同一客户端多个git账号的配置 同一客户端多个git账号的配置 步骤一:用ssh-keygen命令生成一组新的id_rsa_new和id_rsa_new.pub. 1 ssh-keygen -t rs ...