diff --git a/src/data/roadmaps/sql/content/delete@ddtVaA4Ls6qRj-7OtTSIH.md b/src/data/roadmaps/sql/content/delete@ddtVaA4Ls6qRj-7OtTSIH.md index 10edbe369..d2d93fd0b 100644 --- a/src/data/roadmaps/sql/content/delete@ddtVaA4Ls6qRj-7OtTSIH.md +++ b/src/data/roadmaps/sql/content/delete@ddtVaA4Ls6qRj-7OtTSIH.md @@ -1 +1,12 @@ -# Delete \ No newline at end of file +# DELETE + +The `DELETE` statement is used to remove existing rows from a table. In addition, conditions can be applied & executed via a query like so: + +```sql +DELETE FROM table_name WHERE condition; +``` +Omitting the `WHERE` clause will **delete all rows** in the table, and this action is irreversible. + +Visit the following resources to learn more: + +- [@article@SQL DELETE](https://www.w3schools.com/sql/sql_delete.asp)