aconnal Posted September 22, 2006 Share Posted September 22, 2006 Hi, I'm new to the board so please be gentle with me.Anyway I seem to have a problem, I am creating a league table for sales people, I have got it doing everything I want apart from one thing, the ordering. My script creates a temporary table and then I extract the information from that table and order it by the total of sales, however the ordering is wrong this is how it is ordering the total of sales at the moment:9675214018790??Surely the 18790 should be at the top? It looks like mysql is ordering the numbers by the first number and not the whole value!!Any thoughts on this would be appriciated.ThanksA Link to comment https://forums.phpfreaks.com/topic/21639-ordering-question/ Share on other sites More sharing options...
steveclondon Posted September 22, 2006 Share Posted September 22, 2006 would need to see the table sql (or at least that column) to know and the sql code your are using to retreave the information. Link to comment https://forums.phpfreaks.com/topic/21639-ordering-question/#findComment-96574 Share on other sites More sharing options...
aconnal Posted September 22, 2006 Author Share Posted September 22, 2006 Cool, here is the code to create the temporary table:$CREATE = "CREATE TEMPORARY TABLE temp_total_sales(total_sale_id int(10) NOT NULL AUTO_INCREMENT, salesperson_id int(10) NOT NULL, total_sales char(50) NOT NULL, PRIMARY KEY(total_sale_id))";mysql_query($CREATE) or die(mysql_error());Here is the query to extract the information:$QUERY3 = "SELECT * FROM temp_total_sales ORDER BY total_sales DESC";$RESULT3 = mysql_query($QUERY3) or die(mysql_error());$NUMRESULTS3 = mysql_numrows($RESULT3);Hope this helps.CheersA Link to comment https://forums.phpfreaks.com/topic/21639-ordering-question/#findComment-96579 Share on other sites More sharing options...
steveclondon Posted September 22, 2006 Share Posted September 22, 2006 I would make total sales in the table an int or a float before going any further. Link to comment https://forums.phpfreaks.com/topic/21639-ordering-question/#findComment-96583 Share on other sites More sharing options...
steveclondon Posted September 22, 2006 Share Posted September 22, 2006 or decimal which is best (6,2) . Link to comment https://forums.phpfreaks.com/topic/21639-ordering-question/#findComment-96584 Share on other sites More sharing options...
aconnal Posted September 22, 2006 Author Share Posted September 22, 2006 Ah how dim am I yes I've changed it to an int and it works fine now.Thanks for that.A Link to comment https://forums.phpfreaks.com/topic/21639-ordering-question/#findComment-96585 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.