I know how to do this using PHP, but I was wondering if MySQL provides for a simpler solution.
UPDATE users SET fname = 'badooka', lname = '' WHERE user_id='322';
If a value is empty (lname, in this particular case), how do I ignore it instead of overwriting the original with an empty string?