我有三个名为 list1、list2、list3 的十进制列。我想在单个查询中找到最少三个。
我已经厌倦了这个:
SELECT Least(list1, list2, list3)
FROM table1
它抛出一个least
无法识别的函数的错误。
我有三个名为 list1、list2、list3 的十进制列。我想在单个查询中找到最少三个。
我已经厌倦了这个:
SELECT Least(list1, list2, list3)
FROM table1
它抛出一个least
无法识别的函数的错误。
尝试使用UNION
SELECT MIN(x.a)
FROM
(
SELECT list1 a FROM table1
UNION
SELECT list2 a FROM table1
UNION
SELECT list3 a FROM table1
) x
更新 1
SELECT ID,MIN(x.a)
FROM
(
SELECT ID,list1 a FROM table1
UNION
SELECT ID,list2 a FROM table1
UNION
SELECT ID,list3 a FROM table1
) x
GROUP BY ID
其他解决方案,
case when col1 < col2
then case when col1 < col3
then col1
else col3 end
else case when col2 < col3
then col2
else col3 end;
如果表中有超过 1 行,这将起作用
select c.mlist from table1 a
cross apply
(
select min(list1) mlist from
(
select list1
union all
select list2
union all
select list3
) b
) c