I have been using a sql like this to update a list of properties in my database:
update my_table set a = ?, b = ?, c = ?, d = ?, where customer = ?
But I want to update a property with a new value ONLY if it does not have a value in the database already. How can I do that?