mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Docs - minor fixes
This commit is contained in:
parent
606c914bb5
commit
8c60e84067
@ -467,7 +467,7 @@ Aliases: `dateAdd`, `DATE_ADD`.
|
|||||||
**Example**
|
**Example**
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
select DATE_ADD(YEAR, 3, toDate('2018-01-01'));
|
select date_add(YEAR, 3, toDate('2018-01-01'));
|
||||||
```
|
```
|
||||||
|
|
||||||
```text
|
```text
|
||||||
@ -501,13 +501,12 @@ Aliases: `date_diff`, `DATE_DIFF`.
|
|||||||
- `month`
|
- `month`
|
||||||
- `quarter`
|
- `quarter`
|
||||||
- `year`
|
- `year`
|
||||||
|
- `date1`,`date2` - Dates or Dates with time - [Date](../../sql-reference/data-types/date.md) or [DateTime](../../sql-reference/data-types/datetime.md).
|
||||||
- `date1`, `date2` — Date or Date with time - [Date](../../sql-reference/data-types/date.md) or [DateTime](../../sql-reference/data-types/datetime.md).
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
select DATE_DIFF(MONTH, toDate('2018-12-18'), toDate('2018-01-01'));
|
select date_diff(MONTH, toDate('2018-12-18'), toDate('2018-01-01'));
|
||||||
```
|
```
|
||||||
|
|
||||||
```text
|
```text
|
||||||
@ -558,7 +557,7 @@ select timestamp_add(toDate('2018-01-01'), INTERVAL 3 MONTH);
|
|||||||
|
|
||||||
## timestamp\_sub {#timestamp_sub}
|
## timestamp\_sub {#timestamp_sub}
|
||||||
|
|
||||||
Returns the difference between two dates in terms of the specified unit.
|
Returns the difference between two dates in the specified unit.
|
||||||
|
|
||||||
**Syntax**
|
**Syntax**
|
||||||
|
|
||||||
@ -581,8 +580,8 @@ Aliases: `timeStampSub`, `TIMESTAMP_SUB`.
|
|||||||
- `month`
|
- `month`
|
||||||
- `quarter`
|
- `quarter`
|
||||||
- `year`
|
- `year`
|
||||||
- value - Amount of the specified unit of time. [String](../syntax.md#syntax-string-literal).
|
- `value` - Amount of the specified unit of time. [String](../syntax.md#syntax-string-literal).
|
||||||
- `date1`, `date2` — Date or Date with time - [Date](../../sql-reference/data-types/date.md) or [DateTime](../../sql-reference/data-types/datetime.md).
|
- `date1`, `date2` — Date or Date with time - [Date](../../sql-reference/data-types/date.md) or [DateTime](../../sql-reference/data-types/datetime.md).
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user