To the best of my knowledge, the JET database engine does not have a direct
equivalent of this option. There are, however, various other ways to deal
with possible Null values in JET queries. For example, only the first SELECT
statement in the query below returns a Null value. Note that the NZ()
function is an Access function, so that example will work only when the
query is executed in Microsoft Access. The other methods will work when the
query is executed outside of Microsoft Access.
SELECT Null + TestVal FROM tblTest
WHERE TestID = 24
UNION SELECT Null & TestVal FROM tblTest
WHERE TestID = 25
UNION SELECT NZ(Null, 0) + TestVal FROM tblTest
WHERE TestID = 26
UNION SELECT IIf(Null IS NULL, 0, 1) + TestVal FROM tblTest
WHERE TestID = 27