in reply to Update Blank Fields In MySQL
If those fields are set to NULL the UPDATE query does not seem to work, apparently because there is nothing in those fields to update.What's the query? "WHERE field4 = NULL"? Not going to work. "WHERE field4 IS NULL" will.
|
|---|