加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Oracle的行列转换

发布时间:2020-12-12 15:43:41 所属栏目:百科 来源:网络整理
导读:转自:http://blog.csdn.net/xb12369/article/details/39554935 尝试SQL: 统计每天每个类型操作个用多少用户 select * from (select trunc(created_time),action_type,user_id from t_shq_task_operate_log l where l.created_time trunc(sysdate - 7) and l

转自:http://blog.csdn.net/xb12369/article/details/39554935


尝试SQL: 统计每天每个类型操作个用多少用户

select *
from (select trunc(created_time),action_type,user_id
from t_shq_task_operate_log l
where l.created_time > trunc(sysdate - 7)
and l.created_time < trunc(sysdate)
and l.action_type in (0,1,2,3,4)) pivot(count(distinct user_id) for action_type in (0,4));


首先感谢提供Oracle的行列转换丝路!!!


原始表数据:



辅助思考:

[sql] view plain copy print ?
  1. selectusertelephone,
  2. max(decode(filedid,answervalue,0))as"问题1",
  3. max(decode(filedid,0))as"问题2",0))as"问题3",4,0))as"问题4",5,0))as"问题5",6,0))as"问题6",7,0))as"问题7"
  4. fromt_d_Serveyanswerwhereserveyid=3groupbyusertelephoneorderby1asc;




涨姿势的关键字:pivot

copy select*from
  • (selectusertelephone,filedname,t.adddatefromt_d_Serveyanswertjoin
  • t_d_Serveyfiledt1ont.filedid=t1.idwheret.serveyid=3)
  • pivot(
  • max(answervalue)forfilednamein(
  • '坑德基和麦当劳你更喜欢吃什么?',226); color:inherit; line-height:18px; list-style-position:outside!important"> '你什么?',85); line-height:18px; list-style-position:outside!important"> '你是那种人?',226); color:inherit; line-height:18px; list-style-position:outside!important"> '性别',85); line-height:18px; list-style-position:outside!important"> '你爱好什么?',226); color:inherit; line-height:18px; list-style-position:outside!important"> '你叫什么?',85); line-height:18px; list-style-position:outside!important"> '你用过天翼客服吗?'
  • )
  • )orderby1;



  • -------------------------------------------------------------------------------------------------------------------------------

    存储过程实现动态行转列:http://www.cnblogs.com/QQParadise/articles/1712093.html

    顶 0 踩

    (编辑:李大同)

    【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

      推荐文章
        热点阅读