just some info for anyone else who's not a sql guru:<BR><BR>i did the following selection on a table:<BR><BR>SELECT * FROM Table WHERE myField <> 'active'<BR><BR>the values in that colum are a mix of ...
But this would not work. NULL isn't equal to anything in SQL. It just means unknown. NULL is filtered in and out of a query with IS NULL or IS NOT NULL. The way nulls sneak into your query result is ...