Link to home
Start Free TrialLog in
Avatar of Asw
Asw

asked on

Best way to get a record count

Hi,

What is the quickest way to get a record count from an access table?


Thanks
Asw
Avatar of Russell Libby
Russell Libby
Flag of United States of America image


Running a query against the table based on the following SQL text:

>> Select Count(*) from TableName

You can optionally replace the (*) with a specific field name (although the field should be indexed).

----

Russell
Avatar of Asw
Asw

ASKER

Is this using ADO?

Thanks
Andy
ASKER CERTIFIED SOLUTION
Avatar of Russell Libby
Russell Libby
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial