Any idea on how to order the results of a MYSQL query by the sum of two columns rather than by a single column?
Select * FROM table ORDER BY (col1+col2) desc
I know that won't work., but I hope it conveys what I want to do fairly well.
Thanks!
|
Any idea on how to order the results of a MYSQL query by the sum of two columns rather than by a single column?
I know that won't work., but I hope it conveys what I want to do fairly well. Thanks! |
|||
|
|
|
Why not try before concluding it doesn't work? In point of fact, it does. |
|||
|
|
|
The query you wrote should work just fine, you can have any expression in the |
|||
|
|
|
I think you should be able to do
Which is essentially the same as you already have |
|||
|
|