首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

多行合并为一行解决方案

2012-05-09 
多行合并为一行表Aidf1f2123aanull123nullbb234nullcc234aa合并为idf1f2123aabb234aacc[解决办法]SQL code

多行合并为一行
表A
id f1 f2
123 aa null
123 null bb
234 null cc
234 aa

合并为

id f1 f2
123 aa bb
234 aa cc

[解决办法]

SQL code
select id,max(f1) as f1,max(f2) as f2 from A group by id 

热点排行