gpt4 book ai didi

clojure - Datomic 中的参数查询

转载 作者:行者123 更新时间:2023-12-04 18:47:27 26 4
gpt4 key购买 nike

我是learning about Datomic queries并对如何进行“参数查询”感到好奇。

这就是我想出的:

(d/q '[:find ?n ?x :where [?n :likes ?x] [(= ?x "pizza")]] 
[['ethel :likes "sushi"]['fred :likes "pizza"]])

=> #<HashSet [[fred "pizza"]]>

是这样,还是有更简洁/惯用的方式来完成上述任务?

最佳答案

答案在 Datomic tutorial 的“高级查询”部分。

使用 :in条款

(d/q '[:find ?n ?x :in $ ?x :where [?n :likes ?x]] 
[['ethel :likes "sushi"]['fred :likes "pizza"]] "sushi")

=> #<HashSet [[ethel "sushi"]]>
:in $ ?x是参数子句和尾随 "sushi"绑定(bind)到 ?x

关于clojure - Datomic 中的参数查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11891411/

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