我有下表:
Id Included Excluded
13235 null B,D
13235 E null
13236 null D
13237 null B,D
包含和排除的列将仅交替填充。 在结果中,我希望将包含和排除的列合并为Id 13235的一行。我的结果应如下所示:
Id Included Excluded
13235 E B,D
13236 null D
13237 null B,D
如何在SQL中实现这一目标?
答案 0 :(得分:0)
尝试使用MAX
SELECT ID,
MAX(Included) Included,
MAX(Excluded) Excluded
FROM TableName
GROUP BY ID