I have the following query:
select (buyins + buyouts) AS amount from invoice_records where billing_id = 'XYZ' order by amount desc;
Which gives me this result:
amount
------------
207060
198599
198599
So an empty line is placed first, and not 207060?