Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Consulta SQL Server com IN (NULL) não está funcionando


As únicas operações de comparação válidas com NULL os valores são IS NULL ou IS NOT NULL , outros sempre retornam false (na verdade - Unknown, veja o comentário de @Damien_The_Unbeliever)

Então, tente o seguinte
CREATE TYPE [dbo].[BitType] AS TABLE(
    [B] [tinyint] NOT NULL
)
GO
declare @theBitTypeTable BitType

insert @theBitTypeTable
VALUES(0), (2 /* instead of NULL*/)

SELECT something FROM theTable WHERE IsNull(cast(item as tinyint), 2) IN (select B from @theBitTypeTable)