|
date: Mon, 18 Jan 2016 15:33:51 -0500
from: Dan <dan27649@xxxxxxxxx>
subject: Complex (for me) SQL question
I have a table with duplicate (by part number) rows. The following query
lists only those rows for which duplicates exist:
with sum1 as (
select PRPRDN, count(*) as count1 from HPRDFA
group by PRPRDN
order by PRPRDN)
select * from HPRDFA d
where exists (select * from sum1 s where s.PRPRDN = d.PRPRDN and
s.count1 > 1)
order by PRDATER
I need to have this query list only the first two records for each part
number (field PRPRDN), ordered by PRDATER (process date). I'm thinking
somewhere along the lines of "fetch first 2 rows only", but this will
return only two records for the entire query, not two records for each part
number.
- Dan
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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 copyright@midrange.com.
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.