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

Skip to content

Commit 89ecc4e

Browse files
committed
Add a few pages
1 parent 62297f0 commit 89ecc4e

File tree

5 files changed

+29
-3
lines changed

5 files changed

+29
-3
lines changed

src/SUMMARY.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
- [Change databases]()
88
- [Statements]()
99
- [SELECT](./statements/SELECT.md)
10-
- [INSERT]()
10+
- [VALUES](./statements/VALUES.md)
11+
- [INSERT](./statements/INSERT.md)
12+
- [INSERT](./statements/DELETE.md)
1113
- [CREATE]()
12-
- [DELETE]()
13-
- [VALUES]()
1414
- [Functions](./functions.md)
1515
- [CAST](./functions/CAST.md)
1616
- [CONVERT]()
@@ -31,6 +31,7 @@
3131
- [Concepts]()
3232
- [Expression](./concepts/expression.md)
3333
- [Operation](./concepts/operation.md)
34+
- [Source](./concepts/source.md)
3435
- [Column](./concepts/column.md)
3536
- [Table]()
3637
- [Index]()

src/concepts/source.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Source
2+
[`SELECT`](/statements/SELECT.md) or [`VALUES`](/statements/VALUES.md).

src/statements/DELETE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
# 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)\]

src/statements/INSERT.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
# 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)

src/statements/VALUES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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.

0 commit comments

Comments
 (0)