A programmer just pointed something out. In a SQL query, to check if a field is null you could say something like this:
[TABLE.Field] <> NULL
That will work fine in an Access (*.GPJ) project. It will not work in a SQL enterprise database. It should be rewritten like this:
[TABLE.Field] is not NULL
This expression will work in both .GPJs and SQL enterprise databases.