Use Single Row Query with MySQL and PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:33:38Z http://stackoverflow.com/feeds/question/427235 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/427235/use-single-row-query-with-mysql-and-php 2 Use Single Row Query with MySQL and PHP Supernovah 2009-01-09T06:21:49Z 2009-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 . '&lt;br/&gt;'; </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'] . '&lt;br/&gt;'; } </code></pre> http://stackoverflow.com/questions/427235/use-single-row-query-with-mysql-and-php/427245#427245 5 Answer by Soviut for Use Single Row Query with MySQL and PHP Soviut 2009-01-09T06:30:27Z 2009-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#427246 0 Answer by Brian Fisher for Use Single Row Query with MySQL and PHP Brian Fisher 2009-01-09T06:31:08Z 2009-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#427377 1 Answer by Ciaran McNulty for Use Single Row Query with MySQL and PHP Ciaran McNulty 2009-01-09T08:03:00Z 2009-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>