软件开发高手须掌握的4大SQL精髓语句(综合篇)

Posted magenfeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了软件开发高手须掌握的4大SQL精髓语句(综合篇)相关的知识,希望对你有一定的参考价值。

软件开发高手须掌握的4SQL精髓语句(综合篇)
                                  
马根峰
     ( 广东联合电子收费股份有限公司,广州 510300)

 

 

 

作者博客:

CSDN博客:http://blog.csdn.net/magenfeng

新浪博客: http://blog.sina.com.cn/magenfeng

QQ空间: http://user.qzone.qq.com/630414817/main#!

 



 

0       引言 
 

随着计算机在社会各领域应用的深入,软件开发人员不得不面临着或多或少的数据处理、数据库访问。
 

SQLStructured Query Language)语言DML中,有四大语句堪称其精髓部分,分别是CASE WHEN语句,Left Outer Join | Left Join | Right Outer Join |  Right Join | Inner Join语句WITH AS语句UNIONUNION ALL语句
 

本人分别在“软件开发高手须掌握的4SQL精髓语句(一)”至“软件开发高手须掌握的4SQL精髓语句(四) 4篇文章中进行了详细的阐述。
 

本篇文章用一个本人实际工作中的一个实例,实现了上述4大精髓SQL的综合应用。

 


 

 

1       本例所用工具简单说明
 

下面就以DB2数据库为例,以“万能数据库查询分析器”中文版本《DB查询分析器》、英文版本《DB Query Analyzer》作为客户端工具来来演示一下4大SQL精髓语句的用法。
 

之所以选择“万能数据库查询分析器”作为客户端工具,主要是因为,一方面,“万能数据库查询分析器”具有强大的功能、友好的操作界面、良好的操作性、跨越数据库平台。在《程序员20072期的“新产品&工具点评”部分,编辑“特别推荐”了“万能数据库查询分析器”发布。
 

另一方面,截止到目前,中文版本DB查询分析器》在国内最著名的软件下载网站“中关村在线”中下载量近9万次,位居整个数据库类排行谤中前20位。

 


 

 

2       建立DB2数据库的 ODBC数据源UNITOLL2
 

  《DB查询分析器》是通过ODBC数据源来访问各种数据库及EXCEL的,所以首先要建立要访问的数据库或EXCEL的ODBC数据源。如果您的主机上没有对应数据库的ODBC驱动程序,那您还要下载(通常该数据库厂家的官方网站上都提供有ODBC驱动程序下载)安装对应数据库的ODBC驱动程序,然后再建立相应的ODBC数据源。

   DB2数据库是通过配置助手来完成ODBC数据源的创建,下面7张图是创建ODBC数据源UNITOLL2的完整过程。



 

          1           1       
 

          2           2       


 

          3           3        
 

 

          4           4        
 

          5           5       
 

          6           6       
 

          7           7      

   


 


 

 


  3       实例用到的SQL脚本

 

下面就以DB2数据库为例,以“万能数据库查询分析器”中文版本《DB查询分析器》在Windows XP上运行,来作为客户端工具来来演示一下4SQL精髓语句的使用。
 

运行《DB查询分析器》,连接上数据源UNITOLL2,然后输入以下命令:

 

with aas

(

 select outlistno,uploadtime,weightflag,vehkindflag,

 sum(etcmoney)/100 money,sum(vehmoney)/100 vehmoney,sum(etcmoney)/100 money_r

 from tb_cardaccuratesplitresult_weight

 where squaddate>='2012-08-01' and squaddate<'2012-09-01'and areano=4406 

 and outroadno>=1 and batchno>=1and splitlevel<=2

 and (outroadno,squaddate,batchno,

     casewhen OUTLANETYPEin (2,5)then 2when OUTLANETYPEin (4,6)then 4end

    )in (select outroadno,squaddate,batchno,OUTLISTTYPE*2

 from tb_RoadCardSplitCheck

 where squaddate>='2012-08-01' and squaddate<'2012-09-01'

 and areano=4406 and result<=0)

 groupby outlistno,uploadtime,weightflag,vehkindflag

 unionall

 select outlistno,uploadtime,weightflag,vehkindflag,

 sum(cashmoney+officemoney+freemoney+unpaymoney)/100 money,

 sum(vehmoney)/100 vehmoney,sum(cashmoney)/100 money_r

 from tb_cashaccuratesplitresult8

 where areano=4406 and outroadno>=1

 and squaddate>='2012-08-01' and squaddate<'2012-09-01' 

 and batchno>=1 and splitlevel<=2

 and (outroadno,squaddate,batchno) in

 ( select outroadno,squaddate,batchno

   from tb_RoadCashSplitCheck

   where squaddate>='2012-08-01'and squaddate<'2012-09-01'

   and areano=4406and result<=0

   union

   select outroadno,squaddate,batchno

   from tb_RoadCashSplitCheck_his

   where squaddate>='2012-08-01'and squaddate<'2012-09-01'

   and areano=4406and result<=0

 )

 groupby outlistno,uploadtime,weightflag,vehkindflag

) , bas

(

 select listno,uploadtime,squaddate,backup5,backup6,AxisCnt,AllWeight,ExLimitWeight,PREVEHMONEY,roadno,vehcount

 from tb_outlist_weight

 where uploadtime>='2012-07-28-00.00.00' and areano=4406and roadno>=1

 and squaddate>='2012-08-01' and squaddate<'2012-09-01'

 unionall

 select listno,uploadtime,squaddate,backup5,backup6,AxisCnt,AllWeight,ExLimitWeight,PREVEHMONEY,roadno,vehcount

 from tb_manualoutlist_weight

 where areano=4406 and roadno>=1

 and squaddate>='2012-08-01' and squaddate<'2012-09-01' 

) , tas

(

 selectmin(correctid) correctid,listno,uploadtime 

 from tb_outlistcorrected

 where areano=4406 and squaddate>='2012-08-01'and squaddate<'2012-09-01'

 groupby listno,uploadtime

) , cas

(

 select listno,uploadtime,backup5,backup6,AxisCnt,AllWeight,ExLimitWeight,PREVEHMONEY

 from tb_outlistcorrected

 where areano=4406 and squaddate>='2012-08-01'and squaddate<'2012-09-01'

 and (correctid,listno,uploadtime) in (select * from t)  

) , oas

(

 select a.*,b.roadno,b.vehcount,

 casewhen c.listnoisNULLthen b.backup5else c.backup5endas backup5,

 casewhen c.listnoisNULLthen b.backup6else c.backup6endas backup6,

 casewhen c.listnoisNULLthen b.AxisCntelse c.AxisCntendas AxisCnt,

 casewhen c.listnoisNULLthen b.AllWeightelse c.AllWeightendas AllWeight,

 casewhen c.listnoisNULLthen b.ExLimitWeightelse c.ExLimitWeightendas ExLimitWeight,

 casewhen c.listnoisNULLthen b.prevehmoneyelse c.prevehmoneyendas prevehmoney

 from b leftouterjoin c

 on b.listno=c.listno and b.uploadtime=c.uploadtime

 innerjoin a

 on b.listno=a.outlistno and b.uploadtime=a.uploadtime

)

 

select roadno  路段,sum(vehcount)  出口车流量,'',sum(money_r)出口总收入,'',

 

sum(casewhen vehkindflag=2then vehcountelse 0end)货车车流量,

sum(case新手走向高手须掌握的Linux终端技巧

原理+实战 快速掌握响应式开发精髓

数据库03——初级开发需要掌握哪些SQL语句

关于SQL语句的执行先后顺序,希望高手解答并写出原因。谢谢,

如何成为云计算大数据Spark高手

新新手如何成为delphi高手