gpt4 book ai didi

sql-server-2008 - Select 语句中的 bool 逻辑

转载 作者:行者123 更新时间:2023-12-04 06:56:12 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How do I perform an IF...THEN in an SQL SELECT?

(32 个回答)



How do I return a boolean value from a query during condition evaluation?

(4 个回答)


7年前关闭。




如何在查询运行时在 select 语句中实现 bool 逻辑?

SELECT t.[Key]
,t.[Parent_Key]
,t.[Parent_Code]
,t.[Code]
,t.[Desc]
,t.[Point]
,[isChild] -- If Point > 2, then true, if Point == 1 Then false
,t.[By]
,t.[On]
FROM [db].[stats] t WHERE t.[Parent_Key]= @tmpParameter

我想根据 t.[Point] 做一些逻辑来确定 [isChild] bool 值

最佳答案

SELECT t.[Key]
,t.[Parent_Key]
,t.[Parent_Code]
,t.[Code]
,t.[Desc]
,t.[Point]
,CASE WHEN t.[Point] > 2 THEN 1 ELSE
CASE WHEN t.[Point] = 1 THEN 0 ELSE NULL END
END AS [isChild]
,t.[By]
,t.[On]
FROM [db].[stats] t WHERE t.[Parent_Key]= @tmpParameter

请注意,当 t.[Point] < 1 然后 [isChild] 将为空

关于sql-server-2008 - Select 语句中的 bool 逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24700288/

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