SQL DELETE Statement
(Redirected from SQL Delete Statement)
Jump to navigation
Jump to search
A SQL DELETE Statement is a Delete Data Manipulation Statement that is a SQL data manipulation statement (in the SQL language).
- Context:
- It can take the form:
DELETE FROM table WHERE ...;
- It can take the form:
- Example(s):
DELETE FROM t1 WHERE id IN (value1, value2, value3, value4, value5);
- Counter-Example(s):
- See: SQL Data Querying Statement, Hash Data Manipulation Statement.
References
2013
- http://en.wikipedia.org/wiki/Delete_%28SQL%29
- In the database structured query language (SQL), the DELETE statement removes one or more records from a table. A subset may be defined for deletion using a condition, otherwise all records are removed.[1] Some DBMSs, like MySQL, allow to delete rows from multiple tables with one DELETE statement (this is sometimes called multi-table DELETE).
- ↑ "SQL Delete Statement". w3schools.com. http://www.w3schools.com/Sql/sql_delete.asp.