Computer Science, asked by hasni29, 11 months ago


With SQL, how can you delete the records where the
"FirstName" is "Peter" in the Persons Table?

Answers

Answered by artisharma47
3

Delete from Person where ( FirstName= peter)

Answered by Riya3464
1

Answer:

DELETE FROM Persons WHERE FirstName= ‘Peter’;

Similar questions