Hi!
How can I alter my mysql query to have it order the costs by the total costs and not as shown below?
This is my result:
------------------
700
71,20
799
87,70
90,60
920
996,09
This is how I want it:
----------------------
71,20
87,70
90,60
700
799
920
996,09
And this is my query:
---------------------
SELECT * FROM budget ORDER BY costs ASC
Thank you!
Best regards,
Stephan
How can I alter my mysql query to have it order the costs by the total costs and not as shown below?
This is my result:
------------------
700
71,20
799
87,70
90,60
920
996,09
This is how I want it:
----------------------
71,20
87,70
90,60
700
799
920
996,09
And this is my query:
---------------------
SELECT * FROM budget ORDER BY costs ASC
Thank you!
Best regards,
Stephan