I need union similar like sql below.
Select top 10 * from table1 order by name desc union Select top 5 * from table1 order by name asc
So the result should be a single list with 15 records. Is it possible to do this in single query in SOLR ?
I am using SOLR 5.3.1
Thanks and really appreciate your feedback.