SELECT * FROM cand_table WHERE cand_resume = 'NULL';
Using phpMyAdmin, I can see that I have a dozen or so rows where the "cand_resume" column field contains the value NULL.
I'm trying to do an UPDATE to insert a "fake" value for testing purposes, but my query is pulling up 0 rows.
So I tried a SELECT...to see if I can even access these rows. But still, no dice -- just getting the 0 rows.
What am I doing wrong?