Imply bit with constant 1 or 0 in SQL Server

2020-02-07 18:25发布

Is it possible to express 1 or 0 as a bit when used as a field value in a select statement?

e.g.

In this case statement (which is part of a select statement) ICourseBased is of type int.

case 
when FC.CourseId is not null then 1
else 0
end
as IsCoursedBased

To get it to be a bit type I have to cast both values.

case 
when FC.CourseId is not null then cast(1 as bit)
else cast(0 as bit)
end
as IsCoursedBased

Is there a short hand way of expressing the values as bit type without having to cast every time?

(I'm using MS SQL Server 2005)

8条回答
甜甜的少女心
2楼-- · 2020-02-07 18:58

Enjoy this :) Without cast each value individually.

SELECT ...,
  IsCoursedBased = CAST(
      CASE WHEN fc.CourseId is not null THEN 1 ELSE 0 END
    AS BIT
  )
FROM fc
查看更多
啃猪蹄的小仙女
3楼-- · 2020-02-07 19:01

The expression to use inside SELECT could be

CAST(IIF(FC.CourseId IS NOT NULL, 1, 0) AS BIT)
查看更多
爷的心禁止访问
4楼-- · 2020-02-07 19:05

If you want the column is BIT and NOT NULL, you should put ISNULL before the CAST.

ISNULL(
   CAST (
      CASE
         WHEN FC.CourseId IS NOT NULL THEN 1 ELSE 0
      END
    AS BIT)
,0) AS IsCoursedBased
查看更多
该账号已被封号
5楼-- · 2020-02-07 19:10

No, but you could cast the whole expression rather than the sub-components of that expression. Actually, that probably makes it less readable in this case.

查看更多
萌系小妹纸
6楼-- · 2020-02-07 19:10

Unfortunately, no. You will have to cast each value individually.

查看更多
【Aperson】
7楼-- · 2020-02-07 19:18
cast (
  case
    when FC.CourseId is not null then 1 else 0
  end
as bit)

The CAST spec is "CAST (expression AS type)". The CASE is an expression in this context.

If you have multiple such expressions, I'd declare bit vars @true and @false and use them. Or use UDFs if you really wanted...

DECLARE @True bit, @False bit;
SELECT @True = 1, @False = 0;  --can be combined with declare in SQL 2008

SELECT
    case when FC.CourseId is not null then @True ELSE @False END AS ...
查看更多
登录 后发表回答