Login
Remember
Register
Ask a Question
Define the SQL DELETE statement.
+1
vote
asked
Jul 10, 2020
in
Sql
by
Robindeniel
Define the SQL DELETE statement.
#sql-delete-statement
#delete-sql
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 10, 2020
by
SakshiSharma
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>
...