SELECT fname, lname
FROM people
ORDER BY lname;
That will give you something close to an alphabetical listing. The ORDER BY clause sorts like a computer so if you are sorting numbers stored as text, or mixed case items it might look wierd some times.
Numbers 1-10 sorted by ORDER BY:
1
10
2
3
4
5
6
7
8
9
Or something like that.