RE: [PHP] divide-column?

2005-08-30 Thread Murray @ PlanetThoughtful
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...

Re: [PHP] divide-column?

2005-08-30 Thread Jasper Bryant-Greene
Murray @ PlanetThoughtful wrote: 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) You

RE: [PHP] divide-column?

2005-08-30 Thread Murray @ PlanetThoughtful
Murray @ PlanetThoughtful wrote: 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