以位为条件的 SQL
Posted
技术标签:
【中文标题】以位为条件的 SQL【英文标题】:SQL Conditional on Bit 【发布时间】:2009-09-09 15:22:17 【问题描述】:为什么这样做..
DECLARE @SkyBlue Bit
SET @SkyBlue = 1
IF @SkyBlue
Select 'the sky is blue!'
ELSE
Select 'the sky is not blue!'
制作这个
"非布尔类型的表达式 在上下文中指定 预期条件,在“选择”附近。”
SQL2008 中有布尔类型吗?
【问题讨论】:
【参考方案1】:@SkyBlue 有点,不是布尔值。试试:
DECLARE @SkyBlue Bit
SET @SkyBlue = 1
IF @SkyBlue = 1
Select 'the sky is blue!'
ELSE
Select 'the sky is not blue!'
请注意,这也会失败
if 1
Select 'the sky is blue!'
ELSE
Select 'the sky is not blue!'
【讨论】:
以上是关于以位为条件的 SQL的主要内容,如果未能解决你的问题,请参考以下文章