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;
    

  • 相关阅读:
    极验验证(滑动验证)的使用
    from close /destory
    tmeminifile and tinifile
    Delphi的OverRide、OverLoad和Virtual方法
    XE6 FMX之控件绘制与显示
    Delphi Android程序启动过程
    Delphi中的容器类
    接口
    集合
    class methed
  • 原文地址:https://www.cnblogs.com/Tdazheng/p/14962640.html
Copyright © 2011-2022 走看看