我想做一个返回类似这样的(MS)SQL查询:
Col1 Col2 Col3
---- --------------------- ------
AAA 18.92 18.92
BBB 20.00 40.00
AAA 30.84 30.84
BBB 06.00 12.00
AAA 30.84 30.84
AAA 46.79 46.79
AAA 86.40 86.40
当Col1 = AAA时Col3等于Col2,而当Col1 = BBB时Col3是Col2的两倍。 有人能指出我的方向吗?
答案 0 :(得分:35)
您没有提到您正在使用的数据库类型。这是在SQL Server中可以使用的东西:
SELECT Col1, Col2,
CASE WHEN Col1='AAA' THEN Col2 WHEN Col1='BBB' THEN Col2*2 ELSE NULL END AS Col3
FROM ...
答案 1 :(得分:8)
如果值为null,您也可以使用ISNULL
或COALESCE
函数:
SELECT ISNULL(Col1, 'AAA') AS Col1,
ISNULL(Col2, 0) AS Col2,
CASE WHEN ISNULL(Col1, 'AAA') = 'BBB' THEN ISNULL(Col2, 0) * 2
ELSE ISNULL(Col2)
END AS Col3
FROM Tablename
答案 2 :(得分:2)
这取决于您的SQL风格。案例/何时与SQL Server(以及可能的其他人)一起使用。
Select Col1, Col2,
Case When Col1 = 'AAA' Then Col2 Else Col2 * 2 End As Col3
From YourTable
答案 3 :(得分:1)
select *
from yourtable
where (Col3 = col2 AND Col1 = 'AAA') OR
(Col3 = (2*Col2) AND Col1='BBB')
答案 4 :(得分:0)
有时值为null
,因此可以像这样处理:
select Address1 + (case when Address2='' then '' else ', '+Address2 end) +
(case when Address3='' then '' else ', '+ Address3 end) as FullAddress from users