我正在寻找与以下查询等效的solr查询。
select * from table_name
where col1 = '111' and col2 = '222'
and (col3,col4) in (('001','99999'),('002','11111'));
以下solr查询未给出预期结果。
select * from table_name
where col1 = '111' and
solr_query='{"q":"col2:222", "fq":"col3:(001 OR 002) AND col4:(11111 OR
99999)"}';
请建议如何使solr在多个群集列上工作。 col1是分区键。 col2,col3和col4是集群键。