I would like to select rows from database where the ArkivDate
is null.
I tried this:
SELECT
*
FROM
[Bums].[dbo].[Items]
INNER JOIN
[Bums].[dbo].[ItemsArkivFormUsed] ON [Bums].[dbo].[ItemsArkivFormUsed].[ItemNumber] = [Bums].[dbo].[Items].[ItemNumber]
WHERE
[Bums].[dbo].[ItemsArkivFormUsed].[ArkivDate] = null
The query works if I remove the WHERE
clause, but when I include it, the result returns empty.
I'm wondering, have I misplaced the WHERE
?
The tables does have some null ArkivDate
but my query can't filter to only display them
Can I anyone help me please