SELECT id,
CASE GREATEST(score1, score2, score3, score4)
WHEN score1 THEN GREATEST(score2, score3, score4)
WHEN score2 THEN GREATEST(score1, score3, score4)
WHEN score3 THEN GREATEST(score1, score2, score4)
ELSE GREATEST(score1, score2, score3)
END AS col_value
FROM your_table ;
这个解决方案很容易推广到任意数量的列。 和一个没有 CASE ,同时使用 GREATEST() 以及 LEAST() :
select t.*,
(case when score1 > score2 and score1 > score3 and score1 < score 4 then score1
when score1 > score2 and score1 < score3 and score1 > score 4 then score1
when score1 < score2 and score1 > score3 and score1 > score 4 then score1
when score2 > score1 and score2 > score3 and score2 < score 4 then score2
when score2 > score1 and score2 < score3 and score2 > score 4 then score2
when score2 < score1 and score2 > score3 and score2 > score 4 then score2
. . .
end) as second_score
from t;
不过,一般来说,这类问题表明数据结构存在问题。我想你真的应该有一张每张一行的table id 以及 score (也许还有 score 编号)。这在sql中通常更容易操作。
CREATE TABLE #my_table
(id INT NOT NULL, score1 INT NOT NULL, score2 INT NOT NULL, score3 INT NOT NULL, score4 INT NOT NULL)
INSERT INTO #my_table VALUES(1, 10, 05, 30, 50)
INSERT INTO #my_table VALUES(2, 05, 15, 10, 00)
INSERT INTO #my_table VALUES(3, 25, 10, 05, 15)
;WITH getHighestValue as (
SELECT id, Scores, ScoreText, ROW_NUMBER() OVER(PARTITION BY id ORDER BY Scores DESC) AS Ranks
FROM #my_table
UNPIVOT(
Scores for ScoreText in (score1,score2,score3,score4)
) unpiv
)
SELECT id, Scores as col_value
FROM getHighestValue
WHERE Ranks = 2
4条答案
按热度按时间iugsix8n1#
使用
CASE
一个表达式来告诉你的句子中要省略哪个分数GREATEST()
打电话。这个解决方案很容易推广到任意数量的列。
和一个没有
CASE
,同时使用GREATEST()
以及LEAST()
:kcwpcxri2#
假设没有领带,你可以用一个大的
case
表达式:不过,一般来说,这类问题表明数据结构存在问题。我想你真的应该有一张每张一行的table
id
以及score
(也许还有score
编号)。这在sql中通常更容易操作。cgvd09ve3#
考虑以下更容易概括的问题:
如果分数相等,此解决方案将选择“分数不”较低的一个。
svgewumm4#
使用
UNPIVOT
尝试此查询结果: