Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Lagerbestand: zeitlicher Verlauf der Lagerbestände #117

Open
jSebestyen590 opened this issue Sep 13, 2018 · 1 comment
Open

Lagerbestand: zeitlicher Verlauf der Lagerbestände #117

jSebestyen590 opened this issue Sep 13, 2018 · 1 comment

Comments

@jSebestyen590
Copy link

Ein Verlauf des Getränkeverlaufs erlaubt eine einfache Auswertung über die Popularität eines Produkts. Zusätzlich wäre ein Gruppierung nach Produktkategorie interessant.

@jSebestyen590
Copy link
Author

jSebestyen590 commented Sep 13, 2018

SELECT product.productName, Date(events.eventDT), size_types.sizeTypeAmount, SUM(transactionChangeTotal)
FROM
(event_transactions AS trans INNER JOIN
events ON events.eventId = trans.transactionRefEvent) INNER JOIN
products ON products.productId = trans.transactionRefProduct) INNER JOIN
size_types ON trans.transactionRefSizeType = size_types.sizeTypeId
WHERE product.productName = ?
GROUP BY product.productName, Date(events.eventDT), size_types.sizeTypeAmount

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant