Populate SQL DELETE Statement With Content

pull/6883/head
Sarkis Kovlekjian 3 months ago committed by GitHub
parent 54a731aaa5
commit 68bc86c221
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 13
      src/data/roadmaps/sql/content/delete@ddtVaA4Ls6qRj-7OtTSIH.md

@ -1 +1,12 @@
# Delete
# 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)

Loading…
Cancel
Save