Using query analyzer, name 3 ways you can get an accurate count of the number of records in a table?
To get the total record count of a table use Select count(*) from table_name or select count(column_name) from table_name