Jump to content

Ordering Question


aconnal

Recommended Posts

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:

9675
2140
18790??

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.

Thanks

A
Link to comment
https://forums.phpfreaks.com/topic/21639-ordering-question/
Share on other sites

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.

Cheers

A
Link to comment
https://forums.phpfreaks.com/topic/21639-ordering-question/#findComment-96579
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.