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

Skip to content

Commit faa9abe

Browse files
committed
Change links
1 parent 842f19b commit faa9abe

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

src/concepts/expression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Concepts
2-
Is a [column](./concepts/column.md), [function](./functions.md), [operation](./concepts/operation.md) or [value](./other/data_types.md).
2+
Is a [column](/concepts/column.md), [function](/functions.md), [operation](/concepts/operation.md) or [value](/other/data_types.md).

src/concepts/operation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Operation
2-
Is an alternative name for a type of [function](./functions.md); typically comparative binary ones.
2+
Is an alternative name for a type of [function](/functions.md); typically comparative binary ones.

src/functions/CAST.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CAST
2-
Return `$1` [casted](./concepts/casting.md) to `$A`
2+
Return `$1` [casted](/concepts/casting.md) to `$A`
33

44
## Syntax
55
```SQL
@@ -12,4 +12,4 @@ CAST($1 AS $A)
1212
May be anything
1313

1414
### `$A`
15-
Should be a [type name](./other/types.md)
15+
Should be a [type name](/other/types.md)

src/functions/IIF.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ IIF($1, $2, $3)
99
## Parameters
1010

1111
### `$1`
12-
Should evaluate to a [boolean](./other/types.md#boolean)
12+
Should evaluate to a [boolean](/other/types.md#boolean)
1313

1414
### `$2`
1515
May be anything

src/functions/LEFT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LEFT($1, $2)
99
## Parameters
1010

1111
### `$1`
12-
Should evaluate to a [string](./other/types.md#text)
12+
Should evaluate to a [string](/other/types.md#text)
1313

1414
### `$2`
15-
Should evaluate to an [integer](./other/types.md#unsigned_integer)
15+
Should evaluate to an [integer](/other/types.md#unsigned_integer)

src/functions/LOWER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ LOWER($1)
99
## Parameters
1010

1111
### `$1`
12-
Should evaluate to a [string](./other/types.md#text)
12+
Should evaluate to a [string](/other/types.md#text)

src/functions/RIGHT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LEFT($1, $2)
99
## Parameters
1010

1111
### `$1`
12-
Should evaluate to a [string](./other/types.md#text)
12+
Should evaluate to a [string](/other/types.md#text)
1313

1414
### `$2`
15-
Should evaluate to an [integer](./other/types.md#unsigned_integer)
15+
Should evaluate to an [integer](/other/types.md#unsigned_integer)

src/functions/UPPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ UPPER($1)
99
## Parameters
1010

1111
### `$1`
12-
Should evaluate to a [string](./other/types.md#text)
12+
Should evaluate to a [string](/other/types.md#text)

src/statements/SELECT.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Practically, can manipulate data greatly.
77

88
## Syntax
99
- SELECT
10-
- [expression](./concepts/expression.md) \*\[, [expression](./concepts/expression.md) \]\
11-
- [table](./concepts/table.md) \*\[[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) \]\]
10+
- [expression](/concepts/expression.md) \*\[, [expression](/concepts/expression.md) \]\
11+
- [table](/concepts/table.md) \*\[[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) \]\]

0 commit comments

Comments
 (0)