gpt4 book ai didi

tsql - 在 where 子句中使用 T-SQL 中的 CASE?

转载 作者:行者123 更新时间:2023-12-03 21:11:00 25 4
gpt4 key购买 nike

我试图使用 case 来改变我在 where 子句中检查的值,但我收到错误:

关键字“CASE”附近的语法不正确

SQL Server 2005

select * 
from table
where ((CASE when adsl_order_id like '95037%'
then select '000000'+substring(adsl_order_id,6,6)
ELSE select adsl_order_id
END)
not in (select mwebID from tmp_csv_dawis_bruger0105)

最佳答案

以下是在 Where 子句中包含 case 语句的一种方法:

SELECT * FROM sometable
WHERE 1 = CASE WHEN somecondition THEN 1
WHEN someothercondition THEN 2
ELSE ... END

关于tsql - 在 where 子句中使用 T-SQL 中的 CASE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2006242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com