De enda giltiga jämförelseoperationerna med NULL
värden är IS NULL
eller IS NOT NULL
, andra returnerar alltid falskt (faktiskt - Okänd, se @Damien_The_Unbelievers kommentar)
Så prova följande
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)