Each row of data in my table has about 8 elements. I want to check to see if any of the elements = NULL in a certain row, something like this:
UPDATE item_list SET is_tradable='no' WHERE item_name=:itemname AND element_1 = NULL OR element_2 = NULL or element_3... etc.
Can I do the same thing but check if any of them are NULL without going through each item? Like:
UPDATE item_list SET is_tradable='no' WHERE item_name=:itemname AND anyElement = NULL;