phpMyAdmin
 sql >> Database >  >> Database Tools >> phpMyAdmin

mysql unisci 2 tabelle:mostra tutte le righe di una tabella

Dovresti essere in grado di utilizzare un LEFT JOIN per raggiungere questo obiettivo.

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