{ "function": "age", "description": "Returns the difference between two dates or datetimes.\nThe difference is returned as a Interval and needs to be used with one of the following functions in order to extract useful information:
", "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":"age('2012-05-12','2012-05-2')", "returns":"interval", "note":"use day to extract number of days"}, { "expression":"day(age('2012-05-12','2012-05-2'))", "returns":"10"} ] }