So guys I have multiple indexes in Sphinx
eg 3 Indexes index1 Fields: field1_1,field1_2,field1_3 index2 Fields: field2_1,field2_2,field2_3 index3 Fields: field3_1,field3_2,field3_3
I want to search across these three indexes and my search string should be matched across all these fields.
I tried
$query="select * from index1,index2,index3 Match(@(field1_1,field1_2,field1_3,field2_1,field2_2,field2_3,field3_1,field3_2,field3_3) $searchstring)";
But this is throwing some error.How do I achieve something like this. Thanks