tomyknoker
04-17-2007, 09:51 AM
I am trying to order by multiple columns, here is my example and what I want to output
Code
ORDER BY lastName ASC, State ASC
Output
James Anna, Alabama
Ben Bloggs, Alabama
Chris Cats, Alabama
Mark Aims, Delaware
Hopefully you can see what I am trying to achieve, but I don't get there all it does is sort the result by lastName and ignores the states...
Code
ORDER BY lastName ASC, State ASC
Output
James Anna, Alabama
Ben Bloggs, Alabama
Chris Cats, Alabama
Mark Aims, Delaware
Hopefully you can see what I am trying to achieve, but I don't get there all it does is sort the result by lastName and ignores the states...