These queries give
Rownum in Oracle is calculated before the same resultsort (my mistake earlier, but number 2 will be slightly faster given I haven't used Oracle in a clustered bit). So, this query is identical to the first:
SELECT
balance
FROM
(SELECT balance FROM table1 WHERE itemID = *item_id* ORDER BY ID DESC)
WHERE
rownum = 1;
In this case, given an index on ID(since it's clustered, it will store these in logical order, meaning the order by is rapid)this may be slightly faster.
Why haven't you just run them yourself to benchmark them?
