Hi all,
What does a multiple groups query actually accomplish? For example, if you have
SELECT * FROM table WHERE id = $id GROUP BY date, quantity, buyer;
What does that mean in plain English? I know what it means to "Group by date", but is "group by date, quantity" like a 2-d array?
Thanks.