SQLite Forum

A little help with temp tables?
Login
What am I missing here:


CREATE TEMP TABLE hello (
SELECT
ProductId,
UnitPrice,
SUM(Quantity) AS Qty
FROM S
GROUP BY ProductId
ORDER BY Qty
LIMIT 5
);

TX David