> Hi there!
> 
> How do I do a sort in PHP where a column in a db must be two other columns
> divided...`?

<snip>

Hi Gustav,

You should be able to use the divide operation in your query's ORDER BY
clause.

Eg

SELECT * FROM mytable ORDER BY (field1 / field2)

Regards,

Murray
---
"Lost in thought..."
http://www.planetthoughtful.org

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

Reply via email to