2018-03-13《Oracle小脚本整理》

1.单表中名字去重

第一种思路型写法

 select *
        from gbase.gis_bridge a
       where bridge_id not in
             (select bridge_id
                from gbase.gis_bridge a
               where a.bridge_name in
                     (select bridge_name
                        from gbase.gis_bridge a 
                       group by bridge_name
                      having count(*) > 1)
                 and bridge_id not in (select min(bridge_id)
                                        from gbase.gis_bridge
                                       group by bridge_name
                                      having count(*) > 1));       

后来用了更为简单的方法

第二种简洁写法

select * from gbase.gis_bridge a
        where a.bridge_id in(
        select min(bridge_id) from gbase.gis_bridge a
        group by bridge_name)

2.查询并截取特殊字符的字段

截取出名称中从0开始到第一个扩号之前的数据

select substr(section_name,0,instr(section_name,'(',1)-1) from gbase.gis_cable_section

3.将竖向记录两两合并为横向记录

create table ywgl.wq_test(
action_id number primary key,
bill_id number,
starttime varchar2(255),
action varchar2(255)
)

insert into ywgl.wq_test values(1,1,'20170321','s');
insert into ywgl.wq_test values(2,1,'20170322','e');
insert into ywgl.wq_test values(3,1,'20170323','s');
insert into ywgl.wq_test values(4,1,'20170324','e');
insert into ywgl.wq_test values(5,1,'20170324','s');

select t1.starttime,t2.starttime from 
(select starttime,rownum rn from ywgl.wq_test where action='s') t1,
(select starttime,rownum rn from ywgl.wq_test where action='e') t2
where t1.rn=t2.rn(+)

4.Oracle分页查询语句

select *
  from (select s.*, rownum rn
          from (select * from ywgl.ywgl_action_record_gcph order by action_id) s
         where rownum <= 4)
 where rn >= 1

第二种


SELECT * FROM  
(  
SELECT A.*, ROWNUM RN  
FROM (select * from ywgl.ywgl_action_record_gcph order by action_id) A  
)  
WHERE RN BETWEEN 1 AND 4

5.Oracle获取不补0的月份

第一种:date型

-- end_date首先是date型
to_char(end_data, 'fmmm') billMonth

第二种: varchar型

-- 先将varchar转为date型 再获取
to_char(to_date(end_date, 'yyyy-mm-dd hh24:mi'), 'fmmm')

6.Date比较多种方式

第一种:通过varchar比较,适合数据量小的情况(因为大的情况用索引不方便)
where to_char(end_data,'yyyy-MM-dd')='2018-05-07'

第二种:直接date比较(end_date是date类型)
where end_date=date'2018-05-07'

7.字符串的截取

select bill_info_1,
 substr(bill_info_1,
              instr(bill_info_1, ':', 1, 2) + 1,
              instr(bill_info_1, '<br>', 1, 2) -
              (instr(bill_info_1, ':', 1, 2) + 1)) as "工程联系人",
       substr(bill_info_1,
              instr(bill_info_1, ':', 1, 3) + 1,
              instr(bill_info_1, '<br>', 1, 3) -
              (instr(bill_info_1, ':', 1, 3) + 1)) as "联系号码",
       substr(bill_info_1,
              instr(bill_info_1, ':', 1) + 1,
              instr(bill_info_1, '<br>', 1) -
              (instr(bill_info_1, ':', 1) + 1)) as "施工单位",
       substr(bill_info_1, instr(bill_info_1, ':', 1, 4) + 1) as "客保编号" from bill_info where kind_1_id=3

实现效果如下:


7.1字符串截取

8.字符串的截取函数

第七节可以发现如果有规律的数据,如果写一大串来截取,还不如写个函数来实现呢?实现的效果就是给定一个字符串,给定一个特殊字符,最后给定想要获取哪个位置的数据即可。(此函数是由同事毕兄所写,感谢毕兄帮我解决了这个问题)

create or replace function func_ywgl_substr_column (v_content in varchar2,v_identifier in varchar2,v_location in number) return varchar2 is

 v_result varchar2(4000);
 v_identifier_length number;
 v_instr number;
 v_instr_1 number;
 begin
  
  v_identifier_length :=length(v_identifier);
   v_instr :=instr(v_content,v_identifier,1,v_location);
   if v_location =1 then
     null;
     else
   v_instr_1 :=instr(v_content,v_identifier,1,v_location-1);
   end if;
   --if v_instr !=0 then
   if v_location=1 then
   v_result := substr(v_content ,1,instr(v_content,v_identifier,1,1)-1);
   elsif v_instr =0 and v_instr_1<>0 then
     v_result :=substr(v_content,instr(v_content,v_identifier,1,v_location-1)+v_identifier_length);
   else
   v_result := substr(v_content,v_identifier_length+instr(v_content,v_identifier,1,v_location-1),instr(v_content,v_identifier,1,v_location)-v_identifier_length-(instr(v_content,v_identifier,1,v_location-1)));
   end if;
   dbms_output.put_line(v_result);
   return(v_result);
 end;

下面就来验证下结果吧:

select bill_info_4,
       func_ywgl_substr_column(bill_info_4, '$', 1) a,
      func_ywgl_substr_column(bill_info_4, '$', 2) b,
      func_ywgl_substr_column(bill_info_4, '$', 3) c,
      func_ywgl_substr_column(bill_info_4, '$', 4) d,
       func_ywgl_substr_column(bill_info_4, '$', 5) e,
        func_ywgl_substr_column(bill_info_4, '$', 6) f,
      func_ywgl_substr_column(bill_info_4, '$', 7) g,
       func_ywgl_substr_column(bill_info_4, '$', 8) h
  from ywgl.ywgl_bill_info
 where ex_bill_id = 13508440
   and kind_1_id = 6 

运行结果如下:


图8.1 截取函数运行结果图
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,406评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,976评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,302评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,366评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,372评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,457评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,872评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,521评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,717评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,523评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,590评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,299评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,859评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,883评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,127评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,760评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,290评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,357评论 25 707
  • 感赏周末彩羽作业都完成了, 感赏彩羽晚上下自习给我打电话,问候了爸爸和妹妹, 感赏彩祺坚持读英语了,晚饭吃得也棒。...
    无心言欢阅读 132评论 0 0
  • 阿甘正传 第三章 01 中英双语朗读 微博@山姆大叔邻居;微信:fuzienglish > “全州美式橄榄球明星盛...
    山姆大叔邻居阅读 837评论 0 0