Display number of records in database

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

Guest

There must be a simple way of displaying the number of records in your data
base IE: on a web page: the number of items currently in the database is: XX
Would appreciate how to show it!
 
SELECT COUNT(*) FROM YourTable.
The above will give you the number of records in the table.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
That's what I needed! Thanks.

Jens Peter Karlsen said:
SELECT COUNT(*) FROM YourTable.
The above will give you the number of records in the table.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Back
Top