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]
 
Back
Top