Update the phone number for a specific client (
Figure 5.24).
UPDATE clients SET client_phone = '(800) 123-4567' WHERE client_id = 2;
When I originally entered this client, I did not include this information. Using
UPDATE, I can always go back in and assign this value later.
