Skip to content

Commit 3d08890

Browse files
authored
Update datetime.md (#1686)
1 parent 62c3f1c commit 3d08890

File tree

1 file changed

+6
-5
lines changed
  • docs/en/sql-reference/00-sql-reference/10-data-types

1 file changed

+6
-5
lines changed

docs/en/sql-reference/00-sql-reference/10-data-types/datetime.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ description: Basic Date and Time data type.
55

66
import FunctionDescription from '@site/src/components/FunctionDescription';
77

8-
<FunctionDescription description="Introduced or updated: v1.2.648"/>
8+
<FunctionDescription description="Introduced or updated: v1.2.705"/>
99

1010
## Date and Time Data Types
1111

12-
| Name | Aliases | Storage Size | Resolution | Min Value | Max Value | Description |
13-
| --------- | -------- | ------------ | ----------- | ------------------- | ------------------------------ | ------------------------------------------------------------------------- |
14-
| DATE | | 4 bytes | day | 1000-01-01 | 9999-12-31 | YYYY-MM-DD |
15-
| TIMESTAMP | DATETIME | 8 bytes | microsecond | 1000-01-01 00:00:00 | 9999-12-31 23:59:59.999999 UTC | `YYYY-MM-DD hh:mm:ss[.fraction]`, up to microseconds (6 digits) precision |
12+
| Name | Aliases | Storage Size | Resolution | Min Value | Max Value | Format |
13+
|-----------|----------|--------------|-------------|----------------------------|--------------------------------|--------------------------------------------------------------------------------|
14+
| DATE | | 4 bytes | Day | 0001-01-01 | 9999-12-31 | `YYYY-MM-DD` |
15+
| TIMESTAMP | DATETIME | 8 bytes | Microsecond | 0001-01-01 00:00:00.000000 | 9999-12-31 23:59:59.999999 UTC | `YYYY-MM-DD hh:mm:ss[.fraction]`, supports up to 6-digit microsecond precision |
16+
1617

1718
## Examples
1819

0 commit comments

Comments
 (0)