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