摘要:
插入 日期时间 循环插入declare total date:= trunc(sysdate-1) ; begin for i_count in 1..10000 LOOP insert into DQ_DATE(date_time) values ( total ); total... 阅读全文
摘要:
原文:http://www.cnblogs.com/eshizhan/archive/2012/04/06/2435493.html1. CASE WHEN 表达式有两种形式--简单Case函数 CASE sex WHEN '1' THEN '男' WHEN '2' THEN '女' ELS... 阅读全文
摘要:
oracle 截取字符(substr),检索字符位置(instr) case when then else end语句使用 收藏 常用函数:substr和instr1.SUBSTR(string,start_position,[length]) 求子字符串,返回字符串解释:string 元字符串 s... 阅读全文