Update mysql.md (#1879)

This commit is contained in:
whincwu 2022-09-14 11:08:20 +08:00 committed by GitHub
parent d8fb4189fd
commit 288baef931
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ INSERT INTO table1 (field1, field2) VALUES (value1, value2);
```sql
DELETE FROM table1 / TRUNCATE table1
DELETE FROM table1 WHERE condition
DELETE FROM table1, table2 FROM table1, table2 WHERE table1.id1 =
DELETE FROM table1, table2 WHERE table1.id1 =
table2.id2 AND condition
```