Last active
January 17, 2024 07:53
-
-
Save ihsanfaisal/c5d5b813a574b9539258bea723166f46 to your computer and use it in GitHub Desktop.
select join
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
produk.namaproduk, | |
produk.harga, | |
detailpenjualan.jumlahproduk, | |
detailpenjualan.subtotal, | |
penjualan.tanggalpenjualan | |
FROM detailpenjualan | |
LEFT JOIN produk ON detailpenjualan.produkid = produk.produkid | |
LEFT JOIN penjualan ON detailpenjualan.penjualanid = penjualan.penjualanid; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment