This is a follow up question to my last question about table joins in MySQL
I need to be able to select the NULL values from the left joined table.
Here\'s m
According to MySQL specification you should use "IS NULL" instead of "= NULL". It says that "(NULL = NULL) equals to NULL". But NULL equals False while it used as Boolean.