Use Single Row Query with MySQL and PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:33:38Zhttp://stackoverflow.com/feeds/question/427235http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/427235/use-single-row-query-with-mysql-and-php2Use Single Row Query with MySQL and PHPSupernovah2009-01-09T06:21:49Z2009-01-09T17:16:17Z
<p>Hey there</p>
<p>say I have this</p>
<pre><code>$result = mysql_query('SELECT views FROM post ORDER BY views ASC');
</code></pre>
<p>and I want to use the value at index 30 I assumed I would use</p>
<pre><code>mysql_data_seek($result, 30);
$useableResult = mysql_fetch_row($result);
echo $useableResult . '<br/>';
</code></pre>
<p>But that is returning my whole table</p>
<p>What have I got wrong?</p>
<p>Edit: Woops, I actually have</p>
<pre><code>mysql_data_seek($result, 30);
while($row = mysql_fetch_row($result)){
echo $row['views'] . '<br/>';
}
</code></pre>
http://stackoverflow.com/questions/427235/use-single-row-query-with-mysql-and-php/427245#4272455Answer by Soviut for Use Single Row Query with MySQL and PHPSoviut2009-01-09T06:30:27Z2009-01-09T17:16:17Z<p>Simply use an SQL WHERE clause.</p>
<pre><code>$result = mysql_query('SELECT views FROM post WHERE ID=30')
</code></pre>
<p>If you don't want to go by ID but instead want the 30th item that would be returned you can use a LIMIT min, max:</p>
<pre><code>$result = mysql_query('SELECT views FROM post LIMIT 30, 1')
</code></pre>
<p>In both cases your ORDER BY commands become unnecessary.</p>
<p>Here is a <a href="http://www.php-mysql-tutorial.com/wikis/php-tutorial/paging-using-php.aspx" rel="nofollow">good usage example of the LIMIT command</a> for doing paging on large record sets.</p>
http://stackoverflow.com/questions/427235/use-single-row-query-with-mysql-and-php/427246#4272460Answer by Brian Fisher for Use Single Row Query with MySQL and PHPBrian Fisher2009-01-09T06:31:08Z2009-01-09T06:31:08Z<p>Are you sure there are 30 elements in $result? You might want to check to see if 30 > mysql_num_rows().</p>
http://stackoverflow.com/questions/427235/use-single-row-query-with-mysql-and-php/427377#4273771Answer by Ciaran McNulty for Use Single Row Query with MySQL and PHPCiaran McNulty2009-01-09T08:03:00Z2009-01-09T08:03:00Z<p>Your first example would actually do what you want, but be very expensive. The second is selecting the entire table, moving to the 30th row of the result, and then looping through all the results from then onwards.</p>
<p>You should instead do the following, which will only return one row and be a lot faster:</p>
<pre><code>$result = mysql_query('SELECT views FROM post ORDER BY views ASC LIMIT 30,1');
</code></pre>
<p>Note that Soviut's explanation of LIMIT is not quite correct - it's (offset, number of rows) rather than (min, max).</p>