> I want to query on id field for multiple values like..
>
> "q=id:['1', '5', '17']..."
>
> in mysql we perform the same query like..
>
> "select * from table where id in(1,5,17) "
>
> how can we perform the same query in solr on id field?
&q=1 5 17&q.op=OR&df=id
How can we perform query to single string type field for multiple values?
e.g.
I have the schema field like
I want to query on id field for multiple values like..
"q=id:['1', '5', '17']..."
in mysql we perform the same query like..
"select * from table where id in(1,5,17) "
how can we perfor