Skip to content

Instantly share code, notes, and snippets.

@joewiz
Created April 21, 2014 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joewiz/11143603 to your computer and use it in GitHub Desktop.
Save joewiz/11143603 to your computer and use it in GitHub Desktop.
How many days have you been alive, with XQuery
xquery version "3.0";
declare function local:days-since-date($date as xs:date) {
let $duration := current-date() - $date
let $days := days-from-duration($duration)
return
$days
};
local:days-since-date(xs:date('2012-10-12'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment