Oracle操作6
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle操作6相关的知识,希望对你有一定的参考价值。
--查询数据库的时区,默认是世界时区+00:00 select DBTIMEZONE from dual; --查询当前会话的时区,默认是你计算机(服务器)的时区(北京时区+08:00) select SESSIONTIMEZONE from dual; --设置会话的时区 alter session set time_zone=‘+09:00‘ --to_char() FM作用:去除因为9999引发的空格 select to_char(0.596,‘FM99900.00‘) from dual --regexp_replace()利用指定的正则表达式来进行替换 --start参数:从第几个开始查找,默认从头,也就是1 --occu参数:替换第几个匹配的项,默认为0,全部替换,1表示将匹配到的第一个进行替换,后面再有匹配的则不在替换 --match_opt:匹配模式(例如忽略大小写模式) select e.ename, regexp_replace(e.ename,‘S‘,‘-‘,2 ,0,‘i‘) from emp e --表连接查询都可以用子查询替换,但反过来说却不一定 --连接查询的效率要远远高于子查询 select * from emp e inner join dept d on e.deptno=d.deptno; --bug无法看到dept表中的列 select e.*, (select d.deptno from dept d where e.deptno = d.deptno) deptno, (select d.dname from dept d where e.deptno = d.deptno) dname, (select d.loc from dept d where e.deptno = d.deptno) loc from emp e where e.deptno in (select d.deptno from dept d)
以上是关于Oracle操作6的主要内容,如果未能解决你的问题,请参考以下文章
Client / Server Interoperability Support Matrix for Different Oracle Versions (Doc ID 207303.1)(代码片段
Oracle数据库从RMAN备份集片段还原指定单个归档日志进行日志挖掘分析
Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段