5

我正在学习 Datomic 查询,并对如何进行“参数查询”感到好奇。

这就是我想出的:

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

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

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

4

1 回答 1

6

答案在Datomic 教程的“高级查询”部分

使用: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"绑定到?x

于 2012-08-09T20:46:55.203 回答