querying for first appointment time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to query a table of dates that each have multiple appointment times
get the first appointment time for each day in the date range. any
suggestions?
 
In your query, use the First or Min aggregate function.

Or am I missing something?
 
I recommend strongly against FIRST(). MIN() is the correct function.
FIRST() does not refer to "earliest chronologically" which is a sense for
which it is often taken.

Tom Ellison
 

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

Back
Top