× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



How about:

With
Slt1 (Cust, Ren#) as
( Select a1.Customer, max(a1.Renewal)
From RenewalDB a1
Group By a1.Customer),
Slt2 (Cust, Ren#, Seq#) as
( Select a2.Customer, a2.Renewal, max(a2.Sequence)
From RenewalDB a2 inner join
Slt1 on (a2.Customer=Slt1.Cust and
a2.Renewal =Slt1.Ren#)
Group By a2.Customer, a2.Renewal)

Select a.*
From RenewalDB a inner join
Slt2 on (a.Customer=Slt2.Cust and
a.Renewal =Slt2.Ren# and
a.Sequence=Slt2.Seq#)

hth,
Eric

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx]On Behalf Of Dan
Sent: Tuesday, July 31, 2007 9:43 AM
To: Midrange Systems Technical Discussion
Subject: SQL question: Select all unique Key1, but only last of
Key2/Key3


Have a policy detail file keyed by customer#, renewal#, sequence#. I need
to select all customers, but only the last one in key sequence for each
unique customer. Renewal# and sequence# are 2-digit numerics. Am I looking
to use DISTINCT with a subselect? My attempts so far have netted only
syntax errors.

Customer# Renewal# Sequence#
3441978 3
3441978 4
3441978 4 1 <== select this one
3452173 3
3452173 3 1
3452173 3 2 <== select this one
3470317 3
3470317 3 1 <== select this one

TIA,
Dan

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.