Answers for "can i join a table with itself mysql"

SQL
0

how to join result table in mysql

SELECT inv.product_id, inv_stock.stock
FROM inventories AS inv

JOIN 

(SELECT product_id, stock
FROM inventories ) AS inv_stock

ON inv.product_id = inv_stock.product_id
 ;
Posted by: Guest on March-21-2021

Code answers related to "can i join a table with itself mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language