You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
Ein Verlauf des Getränkeverlaufs erlaubt eine einfache Auswertung über die Popularität eines Produkts. Zusätzlich wäre ein Gruppierung nach Produktkategorie interessant.
The text was updated successfully, but these errors were encountered:
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 freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Ein Verlauf des Getränkeverlaufs erlaubt eine einfache Auswertung über die Popularität eines Produkts. Zusätzlich wäre ein Gruppierung nach Produktkategorie interessant.
The text was updated successfully, but these errors were encountered: