I see that in SQL, the GROUP BY has to precede ORDER BY expression. Does this imply that ordering is done after grouping discards identical rows/columns?
Because I s
Select a,b from (select a,b from table order by b) as c group by a;