parent
54a731aaa5
commit
68bc86c221
1 changed files with 12 additions and 1 deletions
@ -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…
Reference in new issue