Update Docs
This commit is contained in:
parent
401b40bb8f
commit
95f23449d6
0
docs/Commands.md
Normal file
0
docs/Commands.md
Normal file
@ -12,3 +12,26 @@ There is 8 data types:
|
|||||||
- `datetime`: A date time in yyyy/mm/dd-hh:mm:ss:mmmm
|
- `datetime`: A date time in yyyy/mm/dd-hh:mm:ss:mmmm
|
||||||
|
|
||||||
All data types can be an array of those types using `[]` in front of it. So `[]int` is an array of integer.
|
All data types can be an array of those types using `[]` in front of it. So `[]int` is an array of integer.
|
||||||
|
|
||||||
|
## Date and time
|
||||||
|
|
||||||
|
ZipponDB use 3 different date and time data type. Those are use like any other type like `int` or `float`.
|
||||||
|
|
||||||
|
### Date
|
||||||
|
|
||||||
|
Data type `date` represent a single day. To write a date, you use this format: `yyyy/mm/dd`.
|
||||||
|
Like that: `2024/10/19`.
|
||||||
|
|
||||||
|
### Time
|
||||||
|
|
||||||
|
Data type `time` represent a time of the day. To write a time, you use this format: `hh:mm:ss.mmmmm`.
|
||||||
|
Like that: `12:45:00.0000`.
|
||||||
|
|
||||||
|
Millisecond and second are optional so this work too: `12:45:00` and `12:45`
|
||||||
|
|
||||||
|
### Datetime
|
||||||
|
|
||||||
|
Data type `datetime` mix of both, it use this format: `yyyy/mm/dd-hh:mm:ss.mmmmm`.
|
||||||
|
Like that: `2024/10/19-12:45:00.0000`.
|
||||||
|
|
||||||
|
Millisecond and second are optional so this work too: `2024/10/19-12:45:00` and `2024/10/19-12:45`
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
# Date and time
|
|
||||||
|
|
||||||
ZipponDB use 3 different date and time data type. Those are use like any other tpye like `int` or `float`.
|
|
||||||
|
|
||||||
## Date
|
|
||||||
|
|
||||||
Data type `date` represent a single day. To write a date, you use this format: `yyyy/mm/dd`.
|
|
||||||
Like that: `2024/10/19`.
|
|
||||||
|
|
||||||
## Time
|
|
||||||
|
|
||||||
Data type `time` represent a time of the day. To write a time, you use this format: `hh:mm:ss.mmmmm`.
|
|
||||||
Like that: `12:45:00.0000`.
|
|
||||||
|
|
||||||
Millisecond and second are optional so this work too: `12:45:00` and `12:45`
|
|
||||||
|
|
||||||
## Datetime
|
|
||||||
|
|
||||||
Data type `datetime` mix of both, it use this format: `yyyy/mm/dd-hh:mm:ss.mmmmm`.
|
|
||||||
Like that: `2024/10/19-12:45:00.0000`.
|
|
||||||
|
|
||||||
Millisecond and second are optional so this work too: `2024/10/19-12:45:00` and `2024/10/19-12:45`
|
|
10
mkdocs.yml
10
mkdocs.yml
@ -8,3 +8,13 @@ markdown_extensions:
|
|||||||
- pymdownx.blocks.caption
|
- pymdownx.blocks.caption
|
||||||
plugins:
|
plugins:
|
||||||
- glightbox
|
- glightbox
|
||||||
|
|
||||||
|
nav:
|
||||||
|
- Home: index.md
|
||||||
|
- Quickstart: Quickstart.md
|
||||||
|
- Schema: Schema.md
|
||||||
|
- ZipponQL: ZiQL.md
|
||||||
|
- Data types: Data type.md
|
||||||
|
- Commands: Commands.md
|
||||||
|
- Benchmark: Benchmark.md
|
||||||
|
- Roadmap: Roadmap.md
|
||||||
|
Loading…
x
Reference in New Issue
Block a user