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

Skip to content

Commit d4e2af8

Browse files
committed
Change syntax
1 parent 85a45f1 commit d4e2af8

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- [SELECT](./statements/SELECT.md)
1010
- [VALUES](./statements/VALUES.md)
1111
- [INSERT](./statements/INSERT.md)
12-
- [INSERT](./statements/DELETE.md)
12+
- [DELETE](./statements/DELETE.md)
1313
- [CREATE]()
1414
- [Functions](./functions.md)
1515
- [CAST](./functions/CAST.md)

src/statements/DELETE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33

44
## 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)\]
98
- \[[WHERE](/other/where.md) [expression](/concepts/expression.md)\]

src/statements/INSERT.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22

33

44
## 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)\])\]
86
- [source](/concepts/source.rs)

src/statements/SELECT.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ Practically, can manipulate data greatly.
66

77

88
## 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)\]
1312
- \[[WHERE](/other/where.md) [expression](/concepts/expression.md)\]
1413
- \[[GROUP BY](/other/group.md) [expression](/concepts/expression.md) \*\[, [expression](/concepts/expression.md) \]\]
1514
- \[[ORDER BY](/other/order.md) [expression](/concepts/expression.md) \*\[, [expression](/concepts/expression.md) \]\]

0 commit comments

Comments
 (0)