gpt4 book ai didi

join - 在 SOLR 中选择连接表字段

转载 作者:行者123 更新时间:2023-12-05 01:46:34 26 4
gpt4 key购买 nike

我有一个类似这样的 SQL 查询

SELECT
P . ID,
P .code,
l.parent_id
FROM
properties P
LEFT JOIN locations l ON l. ID = P .location_id;

我想将此查询转换为 SOLR 查询。我可以通过以下系统加入两个核心

http://example.com:8999/solr/properties/select?q=*:*&fq={!join from=id to=location_id fromIndex=locations}p_id:12345

但是我无法选择核心位置的字段。我该怎么做?您的宝贵建议将不胜感激。

最佳答案

您可以在 fl 中使用子查询。像这样 fl=*,locations:[subquery fromIndex=locations]&locations.q={!terms f=id v=$row.location_id}更多信息在这里 https://lucene.apache.org/solr/guide/6_6/transforming-result-documents.html#TransformingResultDocuments-subquery

关于join - 在 SOLR 中选择连接表字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35198386/

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