I have the following table and want to group/sort rows that have same Name
column value together and then sort each group by Date
column.
So, the expected result is like this:
If i understand your question properly then try this select * from tbl group by Name order by Name,Date