Re: Group by on multiple fields and Stats Solr

2014-12-04 Thread Erick Erickson
And what does this have to do with Search ;) Seriously, databases were built through a lot of very hard work by some very smart people to accomplish their jobs. Solr is a search engine. Trying to make one do the job of the other is usually a frustrating experience. If you must do this, take a

Group by on multiple fields and Stats Solr

2014-12-03 Thread Ankit Jain
Hi All, I need to perform the following queries into Solr: SELECT a, b, Sum(a) FROM tbl GROUP BY a, b. -- Thanks, Ankit Jain