Im having trouble trying to perform a search.  Im creating a search and i need to do to clauses where products.description LIKE &#39;%something%&#39; and variants.description LIKE &#39;%something%&#39;.  Im using the search-region and mv_searchspec parameters but i cant seem to get it to perform the search.<br>
<br>As far as i can tell from the interchange docs you suppose to reference another table using the format table:field in the mv_search_fields parameter but it does not seem to be searching using this.<br><br>I have the following search parameters.<br>
<br>mv_coordinate = &#39;yes&#39;<br>mv_search_file = &#39;products&#39;<br>mv_searchtype = &#39;db&#39;<br>mv_return_fields = &#39;sku, description, prod_group, category, option_type, manufacturer, comment, rrp, price&#39;<br>
mv_sort_field = &#39;category, manufacturer, price, description&#39;<br>mv_sort_option = &#39;f,f,n,f&#39;<br><br>mv_search_field = &#39;prod_group&#39;<br>mv_column_op = &#39;rm&#39;<br>mv_search_spec = &#39;something&#39;<br>
<br>mv_search_field = &#39;variants:description&#39;<br>
mv_column_op = &#39;rm&#39;<br>
mv_search_spec = &#39;something&#39;<br><br>As i said this does not seem to match the desired results the equivalent sql query for this would be:<br><br>SELECT p.sku, p.description, p.prod_group, p.category, p.option_type, p.manufacturer, p.comment, p.rrp, p.price<br>
FROM products AS p, variants AS v<br>WHERE v.sku = p.sku AND p.prod_group LIKE &#39;%something%&#39; AND v.description LIKE &#39;%something%&#39;<br>ORDER BY category, manufacturer, price, description<br><br>Unfortunatly for certain resons i can not use  query i have to uise the search-region. What is wrong with the search parameters i am adding.<br>
<br>Graham<br>