+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>

Related questions

0 votes
asked Jul 10, 2020 in Sql by SakshiSharma
0 votes
asked Jul 8, 2020 in Sql by Robindeniel
...