首页 > 数据库技术 > 详细

oracle笔记

时间:2018-03-28 15:24:14      阅读:247      评论:0      收藏:0      [点我收藏+]

1.mybatis xml中特殊字符处理

https://blog.csdn.net/hbtj_1216/article/details/51763173

2.oracle11g 拆分字符串的详细技巧

https://blog.csdn.net/mchdba/article/details/51946573

http://blog.itpub.net/23368118/viewspace-1074252/

--10g分割函数
SELECT REGEXP_SUBSTR (‘abc1,cbd2,db3,db5‘, ‘[^,]+‘, 1,rownum)

FROM DUAL

CONNECT BY ROWNUM <=

LENGTH (‘abc1,cbd2,db3,db5‘) - LENGTH (REPLACE (‘abc1,cbd2,db3,db5‘, ‘,‘, ‘‘))+1;

3.ORACLE如何查询字符串的真正长度

https://zhidao.baidu.com/question/327791172156811005.html

select  length(‘abcdefgh‘) from dual;

4Oracle中如何截取字符串的

https://zhidao.baidu.com/question/155090484.html

https://blog.csdn.net/housonglin1213/article/details/50344895

 

oracle笔记

原文:https://www.cnblogs.com/ConfidentLiu/p/8663706.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!