count(*), count(distinct), sum, avg, min, max.
An example of a SQL aggregation that is translated to a Solr facet query is below:
Having Clause
AHAVING clause can also be applied to single and multi-dimension aggregations.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Action required: Upgrade to Fusion 5.17.2 to apply urgent security patches. Lucidworks Search clients will be upgraded automatically.
count(*), count(distinct), sum, avg, min, max.
An example of a SQL aggregation that is translated to a Solr facet query is below:
select company_name, count(*) as cnt from orders group by company_name
order by cnt desc
HAVING clause can also be applied to single and multi-dimension aggregations.Was this page helpful?