sql server列转行示例

背景:类似监测污染物是一个站点多条监测污染物存储,此时页面展示的时候需要通过一个sql把该站点的所有污染物都查出来。
方法行转列

select site_code UniqueCode,DateTime,a01001,a01002,a01006
    from 
    (select site_code,monitor_time,m_avg,factor_code from t_air_site_hour_src where site_code in ('3607001057','3607001061') ) as s --源数据
    pivot(max(m_avg) for factor_code IN (a01001,a01002,a01006)) as ss --转变后的数据
    --factor_code 是其中的一个 列字段   a01001 是里面的值,就是你要筛选那几行作为列 

你可能感兴趣的:(前端,服务器,数据库)