gpt4 book ai didi

KDB:字符串与表的比较

转载 作者:行者123 更新时间:2023-12-04 20:02:40 26 4
gpt4 key购买 nike

我有一张 table bb:

bb:([]key1: 0 1 2 1 7; col1: 1 2 3 4 5; col2: 5 4 3 2 1; col3:("11";"22" ;"33" ;"44"; "55"))

如何对字符串进行关系比较?假设我想获取 col3 小于或等于“33”的记录

select from bb where col3 <= "33"

预期结果:

key1    col1    col2    col3
0 1 5 11
1 2 4 22
2 3 3 33

最佳答案

如果你想让col3保持字符串类型,那么就在qsql查询中临时转换一下?

q)select from bb where ("J"$col3) <= 33
key1 col1 col2 col3
-------------------
0 1 5 "11"
1 2 4 "22"
2 3 3 "33"

关于KDB:字符串与表的比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53598596/

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