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 1010 - [VALUES](./statements/VALUES.md)
1111 - [INSERT](./statements/INSERT.md)
1212 - [DELETE](./statements/DELETE.md)
13- - [CREATE]()
13+ - [CREATE](./statements/CREATE.md )
1414- [ Functions] ( ./functions.md )
1515 - [CAST](./functions/CAST.md)
1616 - [CONVERT]()
Original file line number Diff line number Diff line change 11# CREATE
2+
3+ ## Syntax
4+ - ` CREATE ` [ object type] ( /other/object_types.md )
5+ - name
Original file line number Diff line number Diff line change 22
33
44## 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 22
33
44## 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 ) \] )\]
66- [ source] ( /concepts/source.rs )
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ Practically, can manipulate data greatly.
66
77
88## 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 22
33
44## Syntax
5- - VALUES
5+ - ` VALUES `
66- ([ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \] )
77- \*\[ ([ expression] ( /concepts/expression.md ) \*\[ , [ expression] ( /concepts/expression.md ) \] )\]
88
You can’t perform that action at this time.
0 commit comments