mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
18 lines
844 B
Plaintext
18 lines
844 B
Plaintext
{
|
|
"name": "month",
|
|
"type": "function",
|
|
"description": "Extract the month part from a date, or the number of months from an interval.",
|
|
"variants": [
|
|
{ "variant": "Date variant",
|
|
"variant_description": "Extract the month part from a date or datetime.",
|
|
"arguments": [ {"arg":"date","description":"a date or datetime value"}],
|
|
"examples": [ { "expression":"month('2012-05-12')", "returns":"05"}] },
|
|
{
|
|
"variant": "Interval variant",
|
|
"variant_description": "Calculate the length in months of an interval.",
|
|
"arguments": [ {"arg":"interval","description":"interval value to return number of months from"}],
|
|
"examples": [ { "expression":"month(to_interval('3 months'))", "returns":"3"},
|
|
{ "expression":"month(age('2012-01-01','2010-01-01'))", "returns":"4.03333"}]
|
|
}]
|
|
}
|