mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
12 lines
868 B
Plaintext
12 lines
868 B
Plaintext
{
|
|
"name": "age",
|
|
"type": "function",
|
|
"groups": ["Date and Time"],
|
|
"description": "Returns the difference between two dates or datetimes.<br>The difference is returned as a <code>Interval</code> and needs to be used with one of the following functions in order to extract useful information:<br /><ul><li><code>year</code><li><code>month</code><li><code>week</code><li><code>day</code><li><code>hour</code><li><code>minute</code><li><code>second</code></ul>",
|
|
"arguments": [ {"arg":"datetime1","description":"a string, date or datetime representing the later date"},
|
|
{"arg":"datetime2","description":"a string, date or datetime representing the earlier date"}],
|
|
"examples": [ { "expression":"day(age('2012-05-12','2012-05-02'))", "returns":"10"},
|
|
{ "expression":"hour(age('2012-05-12','2012-05-02'))", "returns":"240"} ]
|
|
}
|
|
|