stock_id (PK)
barang_id(FK)
stock_invoice_id(PK)
stock_id(FK)
invoice_id(FK)
barang_id(PK)
stock_id(FK)
name_barang
我想显示尚未输入stock_invoice表的库存数据。然后我按如下方式编写查询
SELECT a.stock_id,a.barang_id, b.stock_invoice_id
FROM stock a
LEFT JOIN stock_invoice b ON a.stock_id=b.stock_id
WHERE b.stock_id IS NULL
但我有问题如何选择Barang表的name_barang
答案 0 :(得分:0)
你需要加入第三个表
SELECT a.stock_id,c.name_barang, b.stock_invoice_id
FROM stock a
LEFT JOIN stock_invoice b ON a.stock_id=b.stock_id
JOIN barang c ON a.barang_id = c.barang_id
WHERE b.stock_id IS NULL
答案 1 :(得分:0)
试试这个: -
SELECT a.stock_id,a.barang_id,c.name_barang,b.stock_invoice_id
FROM stock a
LEFT JOIN stock_invoice b ON a.stock_id=b.stock_id
LEFT JOIN Barang c ON a.barang_id=c.barang_id
WHERE b.stock_id IS NULL
答案 2 :(得分:0)
你需要一个三向连接,
<div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a</p> <p> type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a</p> <p> type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a</p> <p> type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>