Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d6d54f7

Browse files
committed
CREATE, highlight keywords
1 parent d4e2af8 commit d6d54f7

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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]()

src/statements/CREATE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# CREATE
2+
3+
## Syntax
4+
- `CREATE` [object type](/other/object_types.md)
5+
- name

src/statements/DELETE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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)\]

src/statements/INSERT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
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)

src/statements/SELECT.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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) \]\]

src/statements/VALUES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

0 commit comments

Comments
 (0)