Re: [問題] 撈出後處理與撈出前處理

作者: adrianshum (Alien)   2015-10-08 08:32:01
[方法 3]
有些 DBMS 有 analytic function 可以把 col 扭成 row,
你直接可以取得
col_name, count
的結果
[方法 4]
應該可以動態生成:
select sum(col1), sum(col2), sum(col3)... sum(col100) from
(select case col1 when '1' then 1 else null,
case col2 when '1' then 1 else null,
case col3 when '1' then 1 else null
....
case col100 when '1' then 1 else null
from table
作者: qazsd ( )   2015-10-08 17:55:00
請問這是oracle才有支援嗎
作者: BlueBird5566 (生日56)   2015-10-08 20:11:00
方法4就一般SQL而已
作者: qazsd ( )   2015-10-08 23:47:00
要安裝oracle卡在連線無法建立>"< 現在是用mysql

Links booklink

Contact Us: admin [ a t ] ucptt.com