Here is my actual query :
SELECT temp.id_company AS id_company
, temp.code_product AS id_product
, temp.date_product AS date_p
FROM (
SELECT *
FROM companies
INNER JOIN products
ON products.id_company_product = companies.id_company
WHERE module_key_company = "daL/RqzZcfqc."
) AS temp
WHERE temp.code_product = "app_12"
First i get the companies.id_company where companies.module_key_company match "dal....." then i check if i get a match for products.code_product = "app_12" AND products.id_company = companies.id_company i got after the first test.
If both conditions are true, i get what i want. But i also want to get the companies.id_company if there is no match for the products.code_product.
I can't find how i could get the id_company only with the module_key test even if the code_product is wrong.
Thanks for your help.
outer join, such that rows in the Companies table which lack matches in Products will still be output. – Chris Hayes Nov 11 '12 at 1:01