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