W SQL Server 2012 lub nowszym możesz użyć kombinacji IIF
i ISNULL
(lub COALESCE
), aby uzyskać maksymalnie 2 wartości.
Nawet jeśli 1 z nich ma wartość NULL.
IIF(col1 >= col2, col1, ISNULL(col2, col1))
Lub jeśli chcesz, aby zwracał 0, gdy oba mają wartość NULL
IIF(col1 >= col2, col1, COALESCE(col2, col1, 0))
Przykładowy fragment:
-- use table variable for testing purposes
declare @Order table
(
OrderId int primary key identity(1,1),
NegotiatedPrice decimal(10,2),
SuggestedPrice decimal(10,2)
);
-- Sample data
insert into @Order (NegotiatedPrice, SuggestedPrice) values
(0, 1),
(2, 1),
(3, null),
(null, 4);
-- Query
SELECT
o.OrderId, o.NegotiatedPrice, o.SuggestedPrice,
IIF(o.NegotiatedPrice >= o.SuggestedPrice, o.NegotiatedPrice, ISNULL(o.SuggestedPrice, o.NegotiatedPrice)) AS MaxPrice
FROM @Order o
Wynik:
OrderId NegotiatedPrice SuggestedPrice MaxPrice
1 0,00 1,00 1,00
2 2,00 1,00 2,00
3 3,00 NULL 3,00
4 NULL 4,00 4,00
Ale czy trzeba SUMOWAĆ wiele wartości?
Następnie sugeruję KRZYŻ ZASTOSOWAĆ do agregacji WARTOŚCI.
Ma to również tę zaletę, że może obliczyć inne rzeczy w tym samym czasie.
Przykład:
SELECT t.*
, ca.[Total]
, ca.[Maximum]
, ca.[Minimum]
, ca.[Average]
FROM SomeTable t
CROSS APPLY (
SELECT
SUM(v.col) AS [Total],
MIN(v.col) AS [Minimum],
MAX(v.col) AS [Maximum],
AVG(v.col) AS [Average]
FROM (VALUES (t.Col1), (t.Col2), (t.Col3), (t.Col4)) v(col)
) ca
GREATEST
funkcja; SQLite emuluje obsługę, dopuszczając wiele kolumn wMAX
agregacji.