Jump to content

SQL-Snippet - Artikelname-Preis-Anzahl verkäufe


Lausli

Recommended Posts

Hallo,
 
ich versuche bzw. möchte gern ein Export von meinen Artikeln machen. Sprich: Ich will wissen: Welcher Artikel wurde wie oft verkauft.
 
Hat jemand da ein Snippet für mich?
 
Danke :)
 
 
Nachtrag:
Ich habe den Code:

SELECT P.reference as SKU, PL.`name` as Product_Name, COUNT(OD.id_order) as ordered_qty FROM ps_product P
LEFT JOIN ps_product_lang PL ON P.id_product = PL.id_product
LEFT JOIN ps_order_detail OD ON P.id_product = OD.product_id
LEFT JOIN ps_orders O ON O.id_order = OD.id_order
WHERE O.valid = 1
GROUP BY P.reference, PL.`name`
ORDER BY ordered_qty DESC

Er Zeigt aber nicht alle Artikel an. Auch die, die nicht verkauft wurden wäre schön :)
Außerdem bin ich mir nicht sicher, ob das Ergebnis richtig ist.
 
Nachtrag 2: Lösung (glaube ich)

SELECT P.id_product as SKU, PL.`name` as Product_Name, COUNT(OD.id_order) as ordered_qty,ROUND(AVG(OD.product_price / O.conversion_rate), 2) as avgPriceSold,P.`wholesale_price`,COUNT(OD.id_order)*P.`wholesale_price` as Satis_Whosale_carpimi,COUNT(OD.id_order)*ROUND(AVG(OD.product_price / O.conversion_rate), 2) as Toplam_satis FROM ps_product P
LEFT JOIN ps_product_lang PL ON P.id_product = PL.id_product
LEFT JOIN ps_order_detail OD ON P.id_product = OD.product_id
LEFT JOIN ps_orders O ON O.id_order = OD.id_order
WHERE O.valid = 1 AND PL.`id_lang`=1
GROUP BY P.reference, PL.`name`
ORDER BY ordered_qty DESC

Wäre schön, wenn mir jemand das Ergebnis bestätigen kann ob es stimmen kann oder ggf. eine bessere Variante

Edited by Lausli (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...