Hi! I'm trying to do a query with a select in another.
I would like to do something like: select?q=*:* AND id_user=5&fl=id_other select?q=test AND -id(the result of the other select) So: select?q=test AND -id(select?q=* AND id_user=5&fl=id_other) Is it possible? Or I have to do two separates selects? $ids = select?q=*:* AND id_user=5&fl=id_other; $result = select?q=test AND -id(implode(' AND ', $ids)) Thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/Select-where-in-select-tp3999545.html Sent from the Solr - User mailing list archive at Nabble.com.