摘要: http://blog.csdn.net/guoyjoe/article/details/8852184Oracle 中支持正则表达式函数有下面四个1:REGEXP_LIKE 与 LIKE功能相似2:REGEXP_INSTR3:REGEXP_SUBSTR4:REGEXP_REPLACE用法相同但是它们使用POSIX正则表达式代替了老百分号 % _^ 开始$ 结束. 除换行外的任何单字符? 零次1次+ 一次到多次* 零次到多次| 两项之一选项() 子表达式开始结束[] 中括号表达式{m,n} 范围 [[:alpha:]] 任何字母[[:digit:]] 任何数字[[:alnum:]] 任何字母和 阅读全文
posted @ 2014-03-18 20:31 kaka100 阅读(245) 评论(0) 推荐(0) 编辑
摘要: http://www.itpub.net/thread-1802215-1-1.html 转多表插入――有条件的insert all [复制链接]子查询返回的数据行是如何用来插入多个表中small_customersmedium_customerslarge_customerscreate table small_customers(customer_id number,sum_orders number);create table medium_customers(customer_id number,sum_orders number);create table large_custom. 阅读全文
posted @ 2014-03-18 19:28 kaka100 阅读(200) 评论(0) 推荐(0) 编辑