mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
manual.texi DELETE grammer was not quite right (LOW_PRIORITY
manual.texi and QUICK are not mutually exclusive). Docs/manual.texi: DELETE grammer was not quite right (LOW_PRIORITY and QUICK are not mutually exclusive).
This commit is contained in:
parent
5a77b168aa
commit
6f9bcdc5ae
1 changed files with 3 additions and 3 deletions
|
@ -35059,20 +35059,20 @@ only a given number of rows are changed.
|
|||
@findex DELETE
|
||||
|
||||
@example
|
||||
DELETE [LOW_PRIORITY | QUICK] FROM table_name
|
||||
DELETE [LOW_PRIORITY] [QUICK] FROM table_name
|
||||
[WHERE where_definition]
|
||||
[ORDER BY ...]
|
||||
[LIMIT rows]
|
||||
|
||||
or
|
||||
|
||||
DELETE [LOW_PRIORITY | QUICK] table_name[.*] [,table_name[.*] ...]
|
||||
DELETE [LOW_PRIORITY] [QUICK] table_name[.*] [,table_name[.*] ...]
|
||||
FROM table-references
|
||||
[WHERE where_definition]
|
||||
|
||||
or
|
||||
|
||||
DELETE [LOW_PRIORITY | QUICK]
|
||||
DELETE [LOW_PRIORITY] [QUICK]
|
||||
FROM table_name[.*], [table_name[.*] ...]
|
||||
USING table-references
|
||||
[WHERE where_definition]
|
||||
|
|
Loading…
Reference in a new issue