
Hi,
The SQL delete statement is use to delete the data from database table. You can use the where condition with delete statement to delete selective records.
Here is an example of delete sql:
DELETE FROM Person WHERE LName = 'deepak'
Read more about SQL Delete statement.
Thanks