champbronc2 Posted October 4, 2008 Share Posted October 4, 2008 OK I have a table, and I want to sort it by who has the most visits. I do this: Select * From users Where referer = '' ORDER BY visits DESC; So I'd have someone with 9 visits and another person with 86 visits. But it lists 9 before 86... It seems to be sorting by the first digit from the left, when I need to to sort by the greatest number.. And like it'd list 9 before 65 or 54 and so on. How can I fix this? Link to comment https://forums.phpfreaks.com/topic/127024-mysql-will-not-sort-values-correctly/ Share on other sites More sharing options...
waynew Posted October 4, 2008 Share Posted October 4, 2008 Select * From users Where referer = '' ORDER BY visits DESC; Where referer = ???? Are sure that this isn't the problem? Why is their only one double-quotes? Link to comment https://forums.phpfreaks.com/topic/127024-mysql-will-not-sort-values-correctly/#findComment-657069 Share on other sites More sharing options...
PFMaBiSmAd Posted October 4, 2008 Share Posted October 4, 2008 Your column is not an integer data type. Change it to an integer data type. Link to comment https://forums.phpfreaks.com/topic/127024-mysql-will-not-sort-values-correctly/#findComment-657071 Share on other sites More sharing options...
champbronc2 Posted October 4, 2008 Author Share Posted October 4, 2008 How can I change the column to an interger data type? I am new sorry Link to comment https://forums.phpfreaks.com/topic/127024-mysql-will-not-sort-values-correctly/#findComment-657073 Share on other sites More sharing options...
dropfaith Posted October 4, 2008 Share Posted October 4, 2008 do you have php my admin? if so use it and just change the type to int i assume its varchar or something now.. Link to comment https://forums.phpfreaks.com/topic/127024-mysql-will-not-sort-values-correctly/#findComment-657075 Share on other sites More sharing options...
champbronc2 Posted October 4, 2008 Author Share Posted October 4, 2008 Thank you! Link to comment https://forums.phpfreaks.com/topic/127024-mysql-will-not-sort-values-correctly/#findComment-657077 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.