UPDATE phone_list
SET
number='555-5555',
lastname = 'Doe'
WHERE first_name='John';
Note: this also works if the field you want to update is also the field you are searching for:
UPDATE phone_list
SET
first_name = 'Foo',
last_name = 'Bar'
WHERE first_name='John';