Which is the best approach to update the last name and email address of a student with ID 56295?
UPDATE Students SET last_name='Smith', email = '[email protected]' WHERE id='56295';
UPDATE Students SET last_name='Smith', email = '[email protected]' WHERE id=56295;
UPDATE Students SET last_name='Smith' AND email = '[email protected]' WHERE id=56295;
UPDATE Students SET last_name='Smith' AND email = '[email protected]' WHERE id='56295';