SQL IN (SELECT)

Hi,

Is there a similar concept of IN (SELECT) in manticore query?

Here is an example of what I am trying to do:

SELECT * FROM Products where SupplierID IN (SELECT SupplierID FROM Suppliers WHERE match('@Country USA'));

no
we have Searching > Sub-selects | Manticore Search Manual but they work only for reranking

@tomat , is there any way I can achieve the same in manticore?

1 Like

Can you please show me how to accomplish this using multiple select queries?

SELECT Products.* 
FROM Products
INNER JOIN  Suppliers ON Suppliers.SupplierID = Products.SupplierID
WHERE match('@Country USA')