Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
429 B
Plaintext
Raw Permalink Normal View History

{
"name": "epoch",
"type": "function",
2020-07-02 01:46:48 +01:00
"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"]
}