There are two queries:
UPDATE stationery_request t1 SET t1.price=4 WHERE t1.price is null UPDATE stationery_request t1 SET t1.name='value' WHERE t1.name is null
How can I update entries in t1.price
if it is null
and t1.name
if they are not null
independently of each other, in one request?