order by with group by
am 07.05.2006 14:43:02 von IkeIf I have a GROUP BY statement, which groups my multiple fields, e.g.:
SELECT ......GROUP BY date, store
can I have multiple ORDER BY statements with that? e.g.:
SELECT ......GROUP BY date, store ORDER BY date asc, store, desc
Is this an acceptable syntax? Thanks, Ike