PostgreSQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesPostgreSQL Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 24th, 2012, 09:51 AM
dibblejon dibblejon is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2012
Posts: 17 dibblejon User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 48 m 31 sec
Reputation Power: 0
Select max and show last result

Hi

I have a table that has info like:

account | date | reason

abc001 2012-07-01 00:00:00 1
abc001 2012-07-03 14:00:26 3
abc001 2012-07-06 14:00:00 2
sac870 2012-07-01 00:00:00 1
sac870 2012-07-23 00:00:00 2

I want to get resuts by using a max on the date and returning the reason associated with that group - so for the exanple above I want to see

abc001 2012-07-06 14:00:00 2
sac870 2012-07-23 00:00:00 2

Any help would be great

Reply With Quote
  #2  
Old July 24th, 2012, 10:53 AM
shammat shammat is offline
Contributing User
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Oct 2003
Location: Germany
Posts: 2,685 shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Month 3 Weeks 3 Days 19 h 56 m 37 sec
Reputation Power: 284
Code:
select account, date, reason
from (
   select account, 
          date,
          reason,
          row_number() over (partition by account order by date desc) as rn
   from info_table
) t
where rn = 1
order by account
or as an alternative:
Code:
select account, date, reason
from info_table t1
join (
    select account, max(date) as max_date
    from info_table
    group by account) tm on tm.account = t.account and tm.max_date = t1.date
order by account;
although I think the first version will be faster.
__________________
I will not read nor answer questions where the SQL code is messy and not formatted properly using [code] tags.
http://forums.devshed.com/misc.php?do=bbcode#code

Tips on how to ask better questions:
http://tkyte.blogspot.de/2005/06/how-to-ask-questions.html
http://wiki.postgresql.org/wiki/SlowQueryQuestions
http://catb.org/esr/faqs/smart-questions.html

Reply With Quote
  #3  
Old July 25th, 2012, 02:39 AM
dibblejon dibblejon is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2012
Posts: 17 dibblejon User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 48 m 31 sec
Reputation Power: 0
Thanks - have added in this code


select slstop.account, slstop.sys_date, slstop.stop_flag
from (
select slstop.account,
slstop.sys_date,
slstop.stop_flag,
row_number() over (partition by slstop.account order by slstop.sys_date desc) as rn
from slstop
) t
where rn = 1
order by slstop.account

But get this error?

ERROR: missing FROM-clause entry for table "slstop"
LINE 1: select slstop.account, slstop.sys_date, slstop.stop_flag

Tried adding this

select slstop.account, slstop.sys_date, slstop.stop_flag
from slstop(
select slstop.account,
slstop.sys_date,
slstop.stop_flag,
row_number() over (partition by slstop.account order by slstop.sys_date desc) as rn
from slstop
) t
where rn = 1
order by slstop.account

But get this error? Where am i going wrong?

ERROR: syntax error at or near "select"
LINE 3: select slstop.account,

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesPostgreSQL Help > Select max and show last result

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap