ich versuche mir eine SQL Abfrage zusammen zu basteln, die Artikelvarianten mit Preis und Lagerbestand auflistet.
Leider kriege ich nur die Artikel raus, aber nicht die einzelnen Varianten mit gepflegtem Bestand und Verkaufspreis.
Kann mir da jmd helfen? Bin für jeden Typ dankbar.
Bisher habe ich nur das:
SELECT b.`name` AS `Name`, a.`price` AS `Preis`, sav.`quantity` AS `Lagerbestand` FROM `pzsj_product`a
LEFT JOIN `pzsj_product_lang` b ON (b.`id_product` = a.`id_product` AND b.`id_lang` = 2 AND b.`id_shop` = 1)
LEFT JOIN `pzsj_stock_available` sav ON (sav.`id_product` = a.`id_product` AND sav.`id_product_attribute` = 0 AND sav.id_shop = 1 AND sav.id_shop_group = 0 ) JOIN `pzsj_product_shop` sa ON (a.`id_product` = sa.`id_product` AND sa.id_shop = a.id_shop_default)
WHERE 1 ORDER BY sav.`quantity` ASC LIMIT 0, 50
Question
RingelZahn
Hallo zusammen,
ich versuche mir eine SQL Abfrage zusammen zu basteln, die Artikelvarianten mit Preis und Lagerbestand auflistet.
Leider kriege ich nur die Artikel raus, aber nicht die einzelnen Varianten mit gepflegtem Bestand und Verkaufspreis.
Kann mir da jmd helfen? Bin für jeden Typ dankbar.
Bisher habe ich nur das:
und das gibt mir folgendes aus:
Link to comment
Share on other sites
10 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now