File tree Expand file tree Collapse file tree 5 files changed +29
-3
lines changed Expand file tree Collapse file tree 5 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 7
7
- [ Change databases] ( )
8
8
- [ Statements] ( )
9
9
- [SELECT](./statements/SELECT.md)
10
- - [INSERT]()
10
+ - [VALUES](./statements/VALUES.md)
11
+ - [INSERT](./statements/INSERT.md)
12
+ - [INSERT](./statements/DELETE.md)
11
13
- [CREATE]()
12
- - [DELETE]()
13
- - [VALUES]()
14
14
- [ Functions] ( ./functions.md )
15
15
- [CAST](./functions/CAST.md)
16
16
- [CONVERT]()
31
31
- [ Concepts] ( )
32
32
- [Expression](./concepts/expression.md)
33
33
- [Operation](./concepts/operation.md)
34
+ - [Source](./concepts/source.md)
34
35
- [Column](./concepts/column.md)
35
36
- [Table]()
36
37
- [Index]()
Original file line number Diff line number Diff line change
1
+ # Source
2
+ [ ` SELECT ` ] ( /statements/SELECT.md ) or [ ` VALUES ` ] ( /statements/VALUES.md ) .
Original file line number Diff line number Diff line change 1
1
# DELETE
2
+
3
+
4
+ ## Syntax
5
+ - DELETE [ table ref] ( /concepts/table_ref.rs ) FROM
6
+ - [ table] ( /concepts/table.md ) \*\[ [ JOIN] ( /other/join.md ) [ table] ( /concepts/table.md ) \]
7
+ - \[ [ WHERE] ( /other/where.md ) [ expression] ( /concepts/expression.md ) \]
Original file line number Diff line number Diff line change 1
1
# INSERT
2
+
3
+
4
+ ## Syntax
5
+ - INSERT INTO
6
+ - [ table] ( /concepts/table.rs )
7
+ - \[ ([ column] ( /concepts/table.rs ) \*\[ , [ column] ( /concepts/table.rs ) \] )\]
8
+ - [ source] ( /concepts/source.rs )
Original file line number Diff line number Diff line change
1
+ # VALUES
2
+
3
+
4
+ ## Syntax
5
+ - VALUES
6
+ - ([ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \] )
7
+ - \*\[ ([ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \] )\]
8
+
9
+ ## Notes
10
+ Each ` (x) ` should have the same number for expressions.
You can’t perform that action at this time.
0 commit comments