请优化以下sql,我本意是想用sum来统计,但是我还要做user_id(varchar型)排重 ,sum我没有办法对varchar型的user_id排重(反正我不会),所以现在用count来统计,可是效率很低需要30多秒才能出结果,求高手优化。。select 
'stat_time' = '2011-04', 
'fixed_net' = count(distinct case certify_user_type when 1 then user_id else null end ) ,
'school_net' = count(distinct case certify_user_type when 3 then user_id else null end ),
'differ_net' = count(distinct case certify_user_type when 4 then user_id else null end ),
'wlan_net' = count(distinct case certify_user_type when 5 then user_id else null end ),
'other_net' = count(distinct case certify_user_type when 0 then user_id else null end ),
'oneType_user' = count(distinct case when user_type_id=1 and certify_user_type=2 then user_id else null end ) ,
'twoType_user' = count(distinct case when user_type_id=2 and certify_user_type=2 then user_id else null end ),
'threeType_user' = count(distinct case when user_type_id=3 and certify_user_type=2 then user_id else null end ),
'other_user' = count(distinct case when user_type_id=99 and certify_user_type=2 then user_id else null end ),
'local_rom' = count(distinct case romflag when 0 then user_id else null end ),
'out_rom' = count(distinct case romflag when 1 then user_id else null end ),
'in_rom' = count(distinct case romflag when 2 then user_id else null end ),
'nation_out_rom' = count(distinct case romflag when 3 then user_id else null end ),
'nation_in_rom' = count(distinct case romflag when 5 then user_id else null end ) 
from wlan_auth_user_vlan_2011_04 a 

解决方案 »

  1.   

    user_id 是存的String的数字吗  是的话可以直接sum啊
      

  2.   

    看见你的sql太麻烦了  我写一个列子把
    2 XiaoHong 11-12 115
    3 XiaoMing 06-11 19
    4 XiaoGang 05-23 19
    5 XiaoTian 08-14 20
    以上为原始数据SELECT SUM(MID(t.birthDate,1,2)) FROM test_user t GROUP BY t.age11
    8
    11
    上面为查询后的  不知道对你有启发没有
      

  3.   

    select '2011-04' stat_time,
    case  certify_user_type when 1 then sum(cnt) else 0 end fixed_net,
    case  certify_user_type when 3 then sum(cnt) else 0 end school_net,
    case  certify_user_type when 4 then sum(cnt) else 0 end differ_net,
    case  certify_user_type when 5 then sum(cnt) else 0 end wlan_net,
    case  certify_user_type when 0 then sum(cnt) else 0 end other_net,
    case when user_type_id=1 and certify_user_type=2 then sum(cnt) else 0 end oneType_user
    ......
    select certify_user_type,user_type_id,romflag,count(distinct userid) cnt
    from wlan_auth_user_vlan_2011_04 a group  by certify_user_type,user_type_id,romflag没测试,大概意思是这个,对这个结果集再处理下,应该就可以得到你想要的结果了,你想要的应该是group by 后行转列吧
      

  4.   

    select '2011-04' stat_time,
    case  certify_user_type when 1 then sum(cnt) else 0 end fixed_net,
    case  certify_user_type when 3 then sum(cnt) else 0 end school_net,
    case  certify_user_type when 4 then sum(cnt) else 0 end differ_net,
    case  certify_user_type when 5 then sum(cnt) else 0 end wlan_net,
    case  certify_user_type when 0 then sum(cnt) else 0 end other_net,
    case when user_type_id=1 and certify_user_type=2 then sum(cnt) else 0 end oneType_user
    ......
    from 
    (
    select certify_user_type,user_type_id,romflag,count(distinct userid) cnt
    from wlan_auth_user_vlan_2011_04 a group  by certify_user_type,user_type_id,romflag
    ) t
      

  5.   

    每一个去distinct估计比较慢吧,整体distinct以后再统计试试看
    (用你原来的count也可以(count(case certify_user_type when 1 then 1 else null end )),这里改为用sum)
    select 
    'stat_time' = '2011-04', 
    'fixed_net' = sum(case certify_user_type when 1 then 1 else 0 end ) ,
    'school_net' = sum(case certify_user_type when 3 then 1 else 0 end ),
    'differ_net' = sum(case certify_user_type when 4 then 1 else 0 end ),
    'wlan_net' = sum(case certify_user_type when 5 then 1 else 0 end ),
    'other_net' = sum(case certify_user_type when 0 then 1 else 0 end ),
    'oneType_user' = sum(case when user_type_id=1 and certify_user_type=2 then 1 else 0  end ) ,
    'twoType_user' = sum(case when user_type_id=2 and certify_user_type=2 then 1 else 0  end ),
    'threeType_user' = sum(case when user_type_id=3 and certify_user_type=2 then 1 else 0 end ),
    'other_user' = sum(case when user_type_id=99 and certify_user_type=2 then 1 else 0 end ),
    'local_rom' = sum(case romflag when 0 then 1 else 0 end ),
    'out_rom' = sum(case romflag when 1 then 1 else 0 end ),
    'in_rom' = sum(case romflag when 2 then 1 else 0 end ),
    'nation_out_rom' = sum(case romflag when 3 then 1 else 0 end ),
    'nation_in_rom' = sum(case romflag when 5 then 1 else 0 end ) 
    from (select distinct user_id, user_type_id, certify_user_type, romflag 
           from wlan_auth_user_vlan_2011_04) a --把distinct统一在一起而不是每个都去distinct
      

  6.   

    from (select distinct user_id, user_type_id, certify_user_type, romflag 
           from wlan_auth_user_vlan_2011_04) a --把distinct统一在一起而不是每个都去distinct这样去重不可以吧,因为后面还有其它字段呢,有一个不同的 就会多显示一条的,也就是说前面的distinct user_id就有一条失效啊