首页 > 解决方案 > 在 Marklogic 中获取所选日期月份的第一天和最后一天日期

问题描述

我正在尝试使用 MarkLogic 获取任何选定日期的第一天和最后一天的日期。
例子:

let $date := xs:date("2018-08-24")      
let $firstDay := "*Should be 1st day of month - of $date*"  
let $lastDay := "*Should be last day of month - of $date*"  
return ("$firstDay:",$firstDay,"$lastDay:",$lastDay)

预计输出日期:

我可以通过使用functx:first-day-of-month($date)functx:last-day-of-month($date)来获取此日期,但我想知道是否提供了任何 API 或替代选项马克逻辑

标签: datexquerymarklogicmarklogic-8

解决方案


您可以使用标准 XQuery持续时间算法直接计算:

let $date := xs:date("2018-08-24")

let $one-day := xs:dayTimeDuration('P1D')
let $one-month := xs:yearMonthDuration('P1M')
(: subtract days to get to the 1st of the month :)
let $firstDay := $date - (fn:day-from-date($date) - 1) * $one-day
(: get the 1st of the next month and then subtract one day :)
let $lastDay  := $firstDay + $one-month - $one-day

return ("$firstDay:",$firstDay,"$lastDay:",$lastDay)

推荐阅读