|
发表于 2021-5-10 13:30
来自手机
|
显示全部楼层
本帖最后由 zpy2 于 2021-5-10 13:40 编辑
select 星期,考勤日期,group_concat(distinct(case when 列标签='陈玉霞' then 数据 else null end)) as '陈玉霞',group_concat(distinct(case when 列标签='刘琴妹' then 数据 else null end)) as '刘琴妹',group_concat(distinct(case when 列标签='洪淑端' then 数据 else null end)) as '洪淑端',group_concat(distinct(case when 列标签='林国强' then 数据 else null end)) as '林国强',group_concat(distinct(case when 列标签='杨和春' then 数据 else null end)) as '杨和春',group_concat(distinct(case when 列标签='余建明' then 数据 else null end)) as '余建明',group_concat(distinct(case when 列标签='陈达波' then 数据 else null end)) as '陈达波',group_concat(distinct(case when 列标签='黄健' then 数据 else null end)) as '黄健',group_concat(distinct(case when 列标签='杨福云' then 数据 else null end)) as '杨福云',group_concat(distinct(case when 列标签='郑明川' then 数据 else null end)) as '郑明川',group_concat(distinct(case when 列标签='彭湖滨' then 数据 else null end)) as '彭湖滨',group_concat(distinct(case when 列标签='杨蜀虎' then 数据 else null end)) as '杨蜀虎',group_concat(distinct(case when 列标签='胡斌' then 数据 else null end)) as '胡斌',group_concat(distinct(case when 列标签='曹琦' then 数据 else null end)) as '曹琦',group_concat(distinct(case when 列标签='陈海林' then 数据 else null end)) as '陈海林',group_concat(distinct(case when 列标签='肖丽娟' then 数据 else null end)) as '肖丽娟',group_concat(distinct(case when 列标签='向坚' then 数据 else null end)) as '向坚',group_concat(distinct(case when 列标签='黄发娥' then 数据 else null end)) as '黄发娥',group_concat(distinct(case when 列标签='陈惠真' then 数据 else null end)) as '陈惠真',group_concat(distinct(case when 列标签='陈国卿' then 数据 else null end)) as '陈国卿',group_concat(distinct(case when 列标签='肖韵' then 数据 else null end)) as '肖韵',group_concat(distinct(case when 列标签='王任远' then 数据 else null end)) as '王任远',group_concat(distinct(case when 列标签='魏晨思' then 数据 else null end)) as '魏晨思',group_concat(distinct(case when 列标签='曾志文' then 数据 else null end)) as '曾志文',group_concat(distinct(case when 列标签='郑丽旻' then 数据 else null end)) as '郑丽旻',group_concat(distinct(case when 列标签='林温馨' then 数据 else null end)) as '林温馨',group_concat(distinct(case when 列标签='刘彬媚' then 数据 else null end)) as '刘彬媚',group_concat(distinct(case when 列标签='石家福' then 数据 else null end)) as '石家福',group_concat(distinct(case when 列标签='叶佳佳' then 数据 else null end)) as '叶佳佳',group_concat(distinct(case when 列标签='陈炉星' then 数据 else null end)) as '陈炉星',group_concat(distinct(case when 列标签='吴咏芝' then 数据 else null end)) as '吴咏芝' from (select 星期,考勤日期,列标签,group_concat(数据,'、') 数据 from input group by 星期,考勤日期,列标签) group by 星期,考勤日期
数据的确不少 |
|