📅  最后修改于: 2023-12-03 14:48:39.420000             🧑  作者: Mango
XQuery是一种用于XML数据的查询语言,可以用于从XML文档中检索数据。其中current-time()
函数是XQuery中的一个内置函数,用于返回当前时间。
current-time()
函数不需要任何参数即可调用。
current-time()
current-time()
函数返回当前时间,并且其格式为hh:mm:ss
。有时,返回的时间还可能包含毫秒。例如:09:14:40.458
。
假设有以下的XML文档:
<books>
<book>
<title>XQuery 3.1</title>
<author>Priscilla Walmsley</author>
<published>2017</published>
</book>
<book>
<title>XML in a Nutshell</title>
<author>Elliotte Rusty Harold</author>
<published>2002</published>
</book>
<book>
<title>Learning XML</title>
<author>Erik T. Ray</author>
<published>2003</published>
</book>
</books>
我们可以使用以下的XQuery语句来获取当前时间:
current-time()
返回结果类似于:
12:00:25.432
current-time()
函数要求系统时钟在UTC或GMT(格林威治标准时间)上运行。current-time()
函数返回的时间格式为HH:MM:SS.sssssss
。在没有毫秒的情况下,它的格式为HH:MM:SS
。adjust-time-to-timezone()
函数进行调整。以上是XQuery current-time()函数
的介绍,希望对大家有所帮助。