Jump to content

Finding newest record from query results


marky7890

Recommended Posts

Hi,

 

I'm having trouble working out how to do the following:

 

So I have a weather station and the extremes for each day are stored in a MySQL database. I'm planning on having a page showing the 10 highest and lowest temperatures, wind guests, etc.

 

This uses the query:

 

SELECT Date, TempMax FROM wx_daily ORDER BY TempMax DESC LIMIT 0 , 10

 

This will output something like this (example data):

 

2009/06/17 | 22.3

2010/05/30 | 22.0

2011/08/06 | 21.7

2010/07/04 | 21.4

2009/06/14 | 21.0

2011/05/24 | 20.0

2010/08/16 | 19.8

2011/05/15 | 19.6

2009/08/02 | 19.1

2010/06/09 | 18.7

 

I now want to find the newest record from the above results (2011/08/06), this is where I got stuck. Any Ideas on how to do this?

 

Thanks,

Mark

 

 

Link to comment
Share on other sites

Come to think of it, I would create a temporary table (mostly because I like them)

 

The query would looks something like this:

create temporary table temp_dates (the_date, temp);
insert into temp_dates (the_date, temp) select Date, TempMax FROM wx_daily ORDER BY TempMax DESC LIMIT 10;
select * from temp_dates order by the_date desc limit 1;

Link to comment
Share on other sites

fenway's method:

 

select Date, TempMax from (SELECT Date, TempMax FROM wx_daily LIMIT 10) as temps order by temps.Date desc limit 1

 

This almost worked just needed to add an order tag for the second select:

 

select Date, TempMax from (SELECT Date, TempMax FROM wx_daily ORDER BY TempMax Desc LIMIT 10) as temps order by temps.Date desc limit 1 

 

Thanks for all your help everyone.

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.