Here is the query below, and I want the point column to be in ASC order, but when I execute the next query, it does not match ASC. See Result below.
SELECT * FROM `bonus` ORDER BY `bonus`.`points` ASC
It returns the following data:
id referrer_id points created modified 1 10 100 2013-06-01 00:00:00 2013-06-18 00:00:00 2 30 15 2013-06-01 00:00:00 2013-06-18 00:00:00 3 20 45 2013-06-01 00:00:00 2013-06-18 00:00:00
But I want the dots column to be in ASC, like this
id referrer_id points created modified 1 10 100 2013-06-01 00:00:00 2013-06-18 00:00:00 2 20 45 2013-06-01 00:00:00 2013-06-18 00:00:00 3 30 15 2013-06-01 00:00:00 2013-06-18 00:00:00
source share