criteria

  • Thread starter Thread starter Guest
  • Start date Start date
Not sure what you mean by criteria (generally a limitting
piece of logic) but this query will return a single
number for the number of records in the table.

SELECT Count(1) AS RecordCount
FROM MyTable;
 
Back
Top