count in a query

  • Thread starter Thread starter LG
  • Start date Start date
L

LG

I have a query that I run by date(s) . How can I run a query to find out a
total of how many records were entered in that period.
Thanks
 
LG said:
I have a query that I run by date(s) . How can I run a query to find out a
total of how many records were entered in that period.


SELECT COUNT(*) As NumRecords
FROM [your table]
WHERE [date field] Between [Start Date] And [End Date]
 

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

Similar Threads


Back
Top