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

1 answer

Answer

1057159

2026-05-16 01:46

+ Follow

To delete records where FirstName is Peter in the Persons Table, you can use the following SQL query:

<code class="language-sql">DELETE FROM Persons WHERE FirstName = 'Peter';
</code>
ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.