> I'm running a mysql query with the ORDER BY clause, the problem is that
> the column that I'm running them on is type tinytext.  The data are
> product numbers, most of which are numbers, but some are like "404R" or
> whatever else.  So if my values are 403, 404R,405, 4150 - the order ends
> up being:
> 403
> 4150
> 404R
> 405

You'll have to make them numbers, which can be done by adding zero to it. As
long as your letters are only at the end of the numbers, it'll work...

ORDER BY 0+column

404R will be 404, but 4R04 would become 4. You lose everything after the
first letter.

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to