This is weird.
Here is my links database column list:
area|title|url|description|hits
Here is my SQL statement:
SELECT * FROM links ORDER BY area
What I get back is a semi-ordered list...it looks like it ordered half of the records and then after that batch, restarted ordering again on the rest of the records so I see something like:
A
A
B
B
F
F
Z
A
B
F
F
Z
Z
Now if I order on a column that is not the first column like:
SELECT * FROM links ORDER BY hits
This works fine.
Any ideas?
Sean Shrum