earliest and latest date/time per day

M

mike

I have some data that is date/time.
I need to be able to pick out the earliest time stamp and the latest
time stamp for a particular date(s). What would be the query to have a
report show only those two date/time criteria yet not show all the
other time stamps in between?
access 2000 on xp.
thank you.
 
P

Pieter Wijnen

select min(a.timestamp), max(a.timestamp) From mytable ?

Pieter

I have some data that is date/time.
I need to be able to pick out the earliest time stamp and the latest
time stamp for a particular date(s). What would be the query to have a
report show only those two date/time criteria yet not show all the
other time stamps in between?
access 2000 on xp.
thank you.



--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top