I have been trying to find a solution to this problem but have not had any luck. I know there are several similar questions here but they are all more complicated scenarios that do not really apply. Okay, the issue:
I have a very simple table with a list of transaction payees and their associated category. The structure is id - int, name- varchar, and cat - varchar
I am trying to do a simple query to present the payee names in alphabetical order, added to a select box using a while loop. Regardless of whether or not I use ASC or DESC, they are displayed in no apparent order There is no white space in the beginning or end of the entries.
Here is the query - SELECT name FROM payees ORDER BY name
I have the same result when attempting to sort them alphabetically in phpMyAdmin. id is an auto increment int field and the primary key.
Thanks!
UPDATE
Here is example output - SELECT name FROM payees ORDER BY name ASC
- Sheetz
- Walgreens
- Arby's
- Dollar General
- Exxon
- iTunes
- Red Box
- Starbucks
- Walmart
Collation is utf8_unicode_ci
Solved
Kudos to @JohnFlatness for solving the puzzle. This turned out to actually be a flaw in code - this project has a mobile and regular version. There was a bug in the scripting of the mobile version that was adding a space to the beginning of the name column entries. The entries I spot checked for this were fine, missed the ones that had white space.
Thanks for the help - solved via comments, a first for me lol
namecome from? Unless I'm missing something, your table only has three columns,id,payeeandcat– Phil Oct 6 '11 at 23:33SELECT HEX(name) FROM payees ORDER BY name ASC? – NullUserException♦ Oct 6 '11 at 23:40