Connecting Tech Pros Worldwide Help | Site Map

can this be done with one query?

  #1  
Old November 13th, 2005, 12:58 AM
sparks
Guest
 
Posts: n/a
I have 3 fields
id result date
1 1 11/11/02
1 2.3 12/12/03
1
1 4.6 06/04/04

can one query give me all these things?
the min result record 1 1 11/11/02
the first result based on date 1 1 11/11/02
the maximum result info. 1 4.6 06/04/04


thanks for the info

jerry

  #2  
Old November 13th, 2005, 12:58 AM
John Winterbottom
Guest
 
Posts: n/a

re: can this be done with one query?


"sparks" <sparks@here.com> wrote in message
news:iqd6d0dpqst0okn14ovdgt07f7cc0tvugh@4ax.com...[color=blue]
> I have 3 fields
> id result date
> 1 1 11/11/02
> 1 2.3 12/12/03
> 1
> 1 4.6 06/04/04
>
> can one query give me all these things?
> the min result record 1 1 11/11/02
> the first result based on date 1 1 11/11/02
> the maximum result info. 1 4.6 06/04/04
>
>[/color]

This could be slow on large tables. A better way might be to turn the
aggregated list into a derived table and join it back to the original table
to get the related record info - post back if you need that one instead.
Otherwise this should work:


select r.id, min(r.result) as minResult,
(
select r2.[date]
from results r2
where r2.id = r.id
and r2.result =
(
select min(r3.result)
from results r3
where r3.id = r.id
)
) as minResultDate,
(
select r2.result
from results r2
where r2.id = r.id
and r2.[date] =
(
select min(r3.[date])
from results r3
where r3.id = r.id
)
) as firstResult,
max(r.result) as maxResult,
(
select r2.[date]
from results r2
where r2.id = r.id
and r2.result =
(
select max(r3.result)
from results r3
where r3.id = r.id
)
) as maxResultDate
from results as r
group by r.id
order by r.id


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
not sure can this be done with reports on a form? sparks answers 4 November 13th, 2005 04:53 AM
Can this be done? Kathleen Turner answers 4 November 12th, 2005 02:36 PM
Can this be done with a query YoBro answers 1 July 20th, 2005 01:26 AM
Can this be done with a query YoBro answers 1 July 20th, 2005 01:24 AM