天天看點

sql 行列轉換

  <b>行列轉換</b>執行個體

表ttt有三個字段

seq   --序列

jcxm --檢查項目

zhi   --值

資料分别如下:

seq   jcxm        zhi

-------       --------           --------

11     1    0.50

11     2    0.21

11     3    0.25

12     1    0.24

12     2    0.30

12     3    0.22                             

實作功能

建立視圖時移動行值為列值

create view v_view1

as

select seq,

        sum(decode(jcxm,1, zhi)) 檢測項目1,

        sum(decode(jcxm,2, zhi)) 檢測項目2, 

        sum(decode(jcxm,3, zhi)) 檢測項目3 

from ttt

group by seq;

序号 檢測項目1  檢測項目2  檢測項目3

11     0.50    0.21     0.25

12     0.24    0.30     0.22

技巧:

用then中的0和1來進行統計(sum)

jcxm    zhi

----    ----

a            1

b            1

a            3

d            2

e            4

f            5

a            5

d            3

d            6

b            5

c            4

b            3

求他的zhi既是1,也是3,也是5的jcxm

方法一

select jcxm

group by jcxm

having sum(decode(zhi,1,-1,3,-1,5,-1,0)) = -3

方法二

select jcxm from ttt 

group by jcxm having (sign(sum(decode(zhi,1,-1,0)))+

sign(sum(decode(zhi,3,-1,0)))+sign(sum(decode(zhi,5,-1,0)))&lt;=-3);

----------

a

b

說明:

sign()函數根據某個值是0、正數還是負數,分别傳回0、1、-1

是以可以用sign和decode來完成比較字段大小來區某個字段

select decode(sign(字段1-字段2),-1,字段3,字段4) from dual;

sign是一個對于寫分析<b>sql</b>有很強大的功能

下面我對sign進行一些總結:

但屬性student取0和1以外的值,或者student取兩個以上的标法值,問題就不會這麼簡單了

解決辦法就是特征函數(abs(),sign())

常用的特征算法

[a=b]=1-abs(sign(a-b))

[a!=b]=abs(sign(a-b)) 

[a&lt;b]=1-sign(1+sign(a-b)) 不能用-sign(a-b):因為如果不滿足a&lt;b則傳回-1,而不是0,這樣就不能用在字段選擇上了

[a&lt;=b]=sign(1-sign(a-b))

[a&gt;b]=1-sign(1-sign(a-b))

[a&gt;=b]=sign(1+sign(a-b)))

[notα]=1-d [α]

[αandb ]=d [α]*d [b ] (6)

[αor b ]=sign(d [α]+d [b ])

例如:

a&lt;b                          decode( sign(a-b), -1, 1, 0 )         

a&lt;=b                          decode( sign(a-b), 1, 0, 1 )         

a&gt;b                          decode( sign(a-b), 1, 1, 0 )         

a&gt;=b                          decode( sign(a-b), -1, 0, 1 )         

a=b                          decode( a, b, 1, 0 )         

a between b and c       decode( sign(a-b), -1, 0, decode(sign(a-c), 1, 0, 1 ))         

a is null                        decode(a,null,1,0)         

a is not null                  decode(a,null,0,1)          a in (b1,b2,...,bn)   decode(a,b1,1,b2,1,...,bn,1,0)         

nor loga                     decode( loga, 0, 1, 0 )               (1-sign(loga)) 

loga and logb             loga * logb 

loga or logb               loga + logb 

loga xor logb             decode(sign(loga),sign(logb),0,1)    

mod(sign(loga),sign(logb),2

&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;

另外一個關于成績的分析例子

select

sum(case when cj &lt;60 then 1 else 0 end) as "not passed",

sum(case when cj between 60 and 79 then 1 else 0 end) as "passed",

sum(case when cj between 80 and 89 then 1 else 0 end) as "good",

sum(case when cj &gt;=90 then 1 else 0 end) as "excellent"

from cjtable;

decode用法2

表、視圖結構轉化

現有一個商品銷售表sale,表結構為:

month    char(6)      --月份

sell    number(10,2)    --月銷售金額

現有資料為:

200001  1000

200002  1100

200003  1200

200004  1300

200005  1400

200006  1500

200007  1600

200101  1100

200202  1200

200301  1300

想要轉化為以下結構的資料:

year   char(4)           --年份

------------    ---------------------          -------------------

month1  number(10,2)   --1月銷售金額

month2  number(10,2)   --2月銷售金額

month3  number(10,2)   --3月銷售金額

month4  number(10,2)   --4月銷售金額

month5  number(10,2)   --5月銷售金額

month6  number(10,2)   --6月銷售金額

month7  number(10,2)   --7月銷售金額

month8  number(10,2)   --8月銷售金額

month9  number(10,2)   --9月銷售金額

month10  number(10,2)      --10月銷售金額

month11  number(10,2)      --11月銷售金額

month12  number(10,2)      --12月銷售金額

結構轉化的<b>sql</b>語句為:

create or replace view

v_sale(year,month1,month2,month3,month4,month5,month6,month7,month8,month9,month10,month11,month12)

    select 

    substrb(month,1,4),

    sum(decode(substrb(month,5,2),'01',sell,0)),

    sum(decode(substrb(month,5,2),'02',sell,0)),

    sum(decode(substrb(month,5,2),'03',sell,0)),

    sum(decode(substrb(month,5,2),'04',sell,0)),

    sum(decode(substrb(month,5,2),'05',sell,0)),

    sum(decode(substrb(month,5,2),'06',sell,0)),

    sum(decode(substrb(month,5,2),'07',sell,0)),

    sum(decode(substrb(month,5,2),'08',sell,0)),

    sum(decode(substrb(month,5,2),'09',sell,0)),

    sum(decode(substrb(month,5,2),'10',sell,0)),

    sum(decode(substrb(month,5,2),'11',sell,0)),

    sum(decode(substrb(month,5,2),'12',sell,0))

    from sale

    group by substrb(month,1,4);

體會:要用decode /group by/ order by/sign/sum來實作不同報表的生成 

&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;

case應用

1         1         部門a         800         男

2         2         部門b         900         女

3         3         部門a         400         男

4         4         部門d         1400         女

5         5         部門e         1200         男

6         6         部門f         500         男

7         7         部門a         300         女

8         8         部門d         1000         男

9         9         部門d         1230         女

10         10         部門b         2000         女

11         11         部門c         2000         男

12         12         部門b         1200         男

   select jcxm as 部門,count(seq) as 人數,

     sum(case sex when 1 then 1 else 0 end) as 男,

           sum(case sex when 2 then 1 else 0 end) as 女,

     sum(case sign(zhi-800) when -1 then 1 else 0 end) as 小于800元,

     sum((case sign(zhi-800)*sign(zhi-1000)                     /*用*來實作&lt;和&gt;功能*/

          when -1 then 1 else 0 end)+(case zhi

          when 800   then 1 else 0 end)) as 從800至999,          /*注意别名不能以數字開頭*/

     sum((case sign(zhi-1000)*sign(zhi-1200)

          when 1000 then 1 else 0 end)) as 從1000元至1199元,

     sum((case sign(zhi-1200) when 1 then 1 else 0 end)

     +(case zhi when 1200 then 1 else 0 end)) as 大于1200元

from ttt 

部門名 人數     男        女    小于800元 從800至999 從1000元至1199元    大于1200元

部門a         3         2         1         2         1            0                               0

部門b         3         1         2         0         1            0                               2

部門c         1         1         0         0         0            0                              1

部門d         3         1         2         0         0            1                              2

部門e         1         1         0         0         0              0                              1

部門f         1         1         0         1         0            0                              0

繼續閱讀