0

我不知道如何在 sql 中进行以下选择:

桌子:

id score1 score2 score3
0  null   null   3
0  1      null   3
1  null   2      null

选择:

id score1 score2 score3
0  1      null   3
1  null   2      null

谢谢,

詹姆士

4

2 回答 2

2

使用聚合值MAX

SELECT ID, 
       MAX(score1) score1,
       MAX(score2) score2,
       MAX(score3) score3
FROM tableName
GROUP BY ID
于 2012-10-17T09:24:36.560 回答
1

这是基于选择具有比相同 ID 的任何其他行更多的分数填写的行。如果愿意,请保留“最佳”数据。

select id, score1, score2, score3
from (
    select *,
       rn=row_number() over (partition by id
                             order by
                                case when score1 is not null then 1 else 0 end
                                +
                                case when score2 is not null then 1 else 0 end
                                +
                                case when score3 is not null then 1 else 0 end desc)
    from tbl
) x
where rn=1

例如

id score1 score2 score3
0  null   4      null
0  1      null   3         <<< keep
1  null   2      null

当然,您可能更喜欢 John 的答案,这将使 ID=0 的行 (0,1,4,3)。

于 2012-10-17T09:30:42.623 回答