I am trying to do a query that sees if fields are equivalent. However, whenever the field is NULL it returns a false result. I even tried doing the same thing with the column itself:
SELECT * FROM `mturk_completion` WHERE (`mturk_completion`.`imdb_url` =
`mturk_completion`.`imdb_url` AND `mturk_completion`.`worker_id` = 'A3NF84Q37D7F35' )
And it only returns results where the column is not NULL. Why is this so, and how do I get around it?
mturk_completion.imdb_url=mturk_completion.imdb_url"? As far as I know, the contents of a column will always equal the contents of the same column.NULLvalues. TheNULLvalues don'tequateto otherNULLvalues. The=operator just returns aNULLinstead.