Imply bit with constant 1 or 0 in SQL Server

后端 未结 8 1679
一生所求
一生所求 2020-12-13 07:56

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)

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-13 08:27

    The expression to use inside SELECT could be

    CAST(IIF(FC.CourseId IS NOT NULL, 1, 0) AS BIT)
    

提交回复
热议问题