From 68bc86c2211261ab2e8d3f2d3361b14f7786e9f6 Mon Sep 17 00:00:00 2001 From: Sarkis Kovlekjian <83559262+kenshanta@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:19:51 +0200 Subject: [PATCH] Populate SQL DELETE Statement With Content --- .../sql/content/delete@ddtVaA4Ls6qRj-7OtTSIH.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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)