gpt4 book ai didi

kdb - 如何在 KDB 中使用 .year 内部函数?

转载 作者:行者123 更新时间:2023-12-04 19:06:37 25 4
gpt4 key购买 nike

我想使用点表示法来提取日期的年份。

q) myDate:2014.01.01;
q) myDate.year
2014i / works OK

但是当在函数内部时,
f:{[x] :x.year};
f[myDate]

我收到错误消息(我将 Studio 用于 KDB+)
An error occurred during execution of the query.
The server sent the response:
x.year

怎么了?

最佳答案

根据 this page on code.kx ,这种行为是 q 的怪癖。为了解决这个问题,您可以使用 cast 函数。

q)f:{[x] :`year$x}
q)f[myDate]
2014i

关于kdb - 如何在 KDB 中使用 .year 内部函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23117355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com