mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
16 lines
429 B
Plaintext
16 lines
429 B
Plaintext
{
|
|
"name": "epoch",
|
|
"type": "function",
|
|
"groups": ["Date and Time"],
|
|
"description": "Returns the interval in milliseconds between the unix epoch and a given date value.",
|
|
"arguments": [{
|
|
"arg": "date",
|
|
"description": "a date or datetime value"
|
|
}],
|
|
"examples": [{
|
|
"expression": "epoch(to_date('2017-01-01'))",
|
|
"returns": "1483203600000"
|
|
}],
|
|
"tags": ["interval", "date", "milliseconds", "epoch"]
|
|
}
|