phpMyAdmin
 sql >> Base de données >  >> Database Tools >> phpMyAdmin

mysql join 2 tables - affiche toutes les lignes d'une table

Vous devriez pouvoir utiliser un LEFT JOIN pour y parvenir.

SELECT a.id AS stock, COALESCE(b.quanitity,0), b.product_id, a.name AS stock_fullname
FROM a
LEFT JOIN b
  ON a.id = b.stock_id
  AND b.product_id = 13