There is the following filter:
There is a table of products in the database, there is a table of product_countires (ratio M: M), which contains data on the producing country, because there may be a lot of them in a bouquet.
How to handle this filter? What query needs to be made in a DB? Those. In addition to price ( SELECT * FROM products WHERE price > :price_smallest AND price < price_biggest ), you need to somehow select by manufacturer, i.e. do I need to join the table? But how?
