标签: solr distinct-values
示例:
select distinct(city) from employee_details where name="JOHN";
如何在Apache Solr中形成select distinct(参数)查询?
答案 0 :(得分:2)
您可以使用构面生成不同的值
q=name:JOHN&facet=true&facet.field=city&rows=0
尝试运行以上查询