zoukankan      html  css  js  c++  java
  • 求sql查询语句(转换数据表由纵向转换成横向)

    我的表结构:   
      ID(主键)     studentNo   courseNo   score   
      
    1                     01                 2001         99   
      
    2                     01                 2002         98   
      
    3                     01                 2003         97   
      
    4                     02                 2001         95   
      
    5                     02                 2002         94   
      
    6                     02                 2003         93   
    -----------------------------------------------
      查询结果   
      studentNo     
    2001           2002           2003   
      
    01                       99               98               97   
      
    02                       95               94               93 
    declare   @s   varchar(
    8000)   
      
    set   @s=@s+',['+cast(courseNo   as   varchar)+']=sum(case   courseNo   when   '''+cast(courseNo   as   varchar)+'''   then   score   end)'   
      from   表   
      group   by   courseNo   
      exec(
    'select   studentNo'+@s+'   from   表   group   by   studentNo')
    转载CSDN:http://topic.csdn.net/t/20040611/09/3082327.html
  • 相关阅读:
    oracle语法
    cin.clear()、cin.sync()
    Intellij Idea Spring Boot 热部署
    navicat_premium_x64最新版安装说明
    激活navicat premium12
    时间戳Unix和时间之间的转换
    排序算法-- 大总结
    The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
    final
    static
  • 原文地址:https://www.cnblogs.com/zpq521/p/1240908.html
Copyright © 2011-2022 走看看