+1 vote
in Sql by
Define the SQL DELETE statement.

1 Answer

0 votes
by
DELETE is used to delete a row or rows from a table based on the specified condition.

The basic syntax is as follows:

DELETE FROM table_name

WHERE <Condition>
...