How do you replace hussain tomin in the persons table lastname?
Thursday, December 29, 2022
Add Comment
Question: How do you replace hussain tomin in the persons table lastname?
To replace Hussain Tomin in the Persons table lastname you would use the following SQL statement:
UPDATE Persons
SET Lastname = 'NewLastname'
WHERE Lastname = 'Hussain Tomin';
0 Komentar
Post a Comment