Performance between SELECT MAX(col_name) and ROWNUM = 1 - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:25:20Zhttp://stackoverflow.com/feeds/question/1081389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081389/performance-between-select-maxcolname-and-rownum-11Performance between SELECT MAX(col_name) and ROWNUM = 1Sambath2009-07-04T02:55:35Z2009-07-04T03:30:27Z
<p>Dear all,</p>
<p>I doubt on the speed and result of below queries. Could anyone give me the explanation on them? (These queries written for Oracle database)</p>
<p>Let say I have a table <strong>table1(ID, itemID, trnx_date, balance, ...)</strong>. I want to get the latest balance of an item.</p>
<p>Query 1:</p>
<p><strong>SELECT balance FROM table1 WHERE ID = (SELECT MAX(ID) from table1 WHERE itemID = *item_id*);</strong></p>
<p>Query 2:</p>
<p><strong>SELECT balance FROM table1 WHERE itemID = *item_id* AND rownum = 1
ORDER BY ID DESC;</strong></p>
<p>where <strong>*item_id*</strong> is the variable.</p>
<p>Thus, do these two queries give the same result? And which one is faster or is there any other query that is faster than them?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1081389/performance-between-select-maxcolname-and-rownum-1/1081393#10813932Answer by Eric for Performance between SELECT MAX(col_name) and ROWNUM = 1Eric2009-07-04T02:59:55Z2009-07-04T03:30:27Z<p><code>Rownum</code> in Oracle is calculated before the sort (my mistake earlier, I haven't used Oracle in a bit). So, this query is identical to the first:</p>
<pre><code>SELECT
balance
FROM
(SELECT balance FROM table1 WHERE itemID = *item_id* ORDER BY ID DESC)
WHERE
rownum = 1;
</code></pre>
<p>In this case, given an index on ID, this may be <em>slightly</em> faster.</p>
<p>Why haven't you just run them yourself to benchmark them?</p>