Update Docs

This commit is contained in:
Adrien Bouvais 2024-11-25 23:09:02 +01:00
parent 401b40bb8f
commit 95f23449d6
4 changed files with 33 additions and 22 deletions

0
docs/Commands.md Normal file
View File

View File

@ -12,3 +12,26 @@ There is 8 data types:
- `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.
## 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`

View File

@ -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`

View File

@ -8,3 +8,13 @@ markdown_extensions:
- pymdownx.blocks.caption
plugins:
- 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