zoukankan      html  css  js  c++  java
  • LeetCode 【困难】数据库-第618:学生地理信息报告(分组行列转换)

    题目要求

    1. 按照’月份‘排序

    select *,row_number() over (partition by continent order by name) rn from students;
    

    2.行列转换,找出符合条件的一个人

    select  
    min(
    case when continent = '一月' then name else  end)  as 一月,
    min(
    case when continent = '二月' then name else null end)  as 二月,
    min(
    case when continent = '三月' then name else null end)  as 三月,
    min(
    case when continent = '四月' then name else null end)  as 四月
    from students;
    

    3. 汇总集合

    select  
    min(
    case when continent = '一月' then name else null end)  as 一月,
    min(
    case when continent = '二月' then name else null end)  as 二月,
    min(
    case when continent = '三月' then name else null end)  as 三月,
    min(
    case when continent = '四月' then name else null end)  as 四月
    from (
    select *,row_number() over (partition by continent order by name) rn from students
    ) b
    group by rn;
    

  • 相关阅读:
    redis-单线程为什么快
    redis-数据结构
    http-状态码
    事件绑定完整版2016/4/21
    焦点事件2016、4、21
    ++
    Bom2016/4/21
    添加以及删除className
    getByClassName2016/4/21
    动态添加
  • 原文地址:https://www.cnblogs.com/Tdazheng/p/14962640.html
Copyright © 2011-2022 走看看