Jump to content

select last 100 records inserted


cmor

Recommended Posts

Why oh why does this not work:

 

@ $db = new mysqli('localhost', user', 'password', 'database');
$query = "select * from weather where timekey in (select * from weather ORDER BY timekey desc LIMIT 168) order by timekey asc";
$result = $db->query($query);

 

I need to select the last records in the database and order them in ascending order.

sigh....

 

Link to comment
Share on other sites

the reason it doesn't work is because you're grabbing all 168 of the records in descending order for the sub-query, which the overall select query is then just reshuffling.  you need to limit the subquery to 100, or you can just toss them in an array and resort using PHP:

 

while ($row = mysql_fetch_assoc($resource))
{
  $stuff[] = $row;
}
$new_order = array_reverse($stuff);

Link to comment
Share on other sites

if that is the case (versions below 4.1, I think) then

 

<?php

mysql_query ("CREATE TEMPORARY TABLE tmp SELECT timekey FROM WEATHER ORDER BY timekey DESC LIMIT 168");
$res = mysql_query ("SELECT w.* 
            FROM WEATHER w
            INNER JOIN tmp t ON w.timekey = t.timekey
            ORDER BY timekey")
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.