File tree Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 9
9
- [SELECT](./statements/SELECT.md)
10
10
- [VALUES](./statements/VALUES.md)
11
11
- [INSERT](./statements/INSERT.md)
12
- - [INSERT ](./statements/DELETE.md)
12
+ - [DELETE ](./statements/DELETE.md)
13
13
- [CREATE]()
14
14
- [ Functions] ( ./functions.md )
15
15
- [CAST](./functions/CAST.md)
Original file line number Diff line number Diff line change 2
2
3
3
4
4
## Syntax
5
- - DELETE
6
- - \[ [ table ref] ( /concepts/table_ref.rs ) \]
7
- - FROM
8
- - [ table] ( /concepts/table.md ) \*\[ [ JOIN] ( /other/join.md ) [ table] ( /concepts/table.md ) \]
5
+ - DELETE \[ [ table ref] ( /concepts/table_ref.rs ) \]
6
+ - FROM [ table] ( /concepts/table.md )
7
+ - \*\[ [ JOIN] ( /other/join.md ) [ table] ( /concepts/table.md ) \]
9
8
- \[ [ WHERE] ( /other/where.md ) [ expression] ( /concepts/expression.md ) \]
Original file line number Diff line number Diff line change 2
2
3
3
4
4
## Syntax
5
- - INSERT INTO
6
- - [ table] ( /concepts/table.rs )
7
- - \[ ([ column] ( /concepts/table.rs ) \*\[ , [ column] ( /concepts/table.rs ) \] )\]
5
+ - INSERT INTO [ table] ( /concepts/table.rs ) \[ ([ column] ( /concepts/table.rs ) \*\[ , [ column] ( /concepts/table.rs ) \] )\]
8
6
- [ source] ( /concepts/source.rs )
Original file line number Diff line number Diff line change @@ -6,10 +6,9 @@ Practically, can manipulate data greatly.
6
6
7
7
8
8
## Syntax
9
- - SELECT
10
- - [ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \] \
11
- - FROM
12
- - [ table] ( /concepts/table.md ) \*\[ [ JOIN] ( /other/join.md ) [ table] ( /concepts/table.md ) \]
9
+ - SELECT [ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \] \
10
+ - FROM [ table] ( /concepts/table.md )
11
+ - \*\[ [ JOIN] ( /other/join.md ) [ table] ( /concepts/table.md ) \]
13
12
- \[ [ WHERE] ( /other/where.md ) [ expression] ( /concepts/expression.md ) \]
14
13
- \[ [ GROUP BY] ( /other/group.md ) [ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \]\]
15
14
- \[ [ ORDER BY] ( /other/order.md ) [ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \]\]
You can’t perform that action at this time.
0 commit comments