Using query analyzer, name 3 ways you can get an accurate
count of the number of records in a table?
Answer Posted / madhu
To get the total record count of a table use
Select count(*) from table_name
or
select count(column_name) from table_name
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the significance of null value and why should we avoid permitting null values?
Which sql server table is used to hold the stored procedure scripts?
How to create a store procedure with encryption?
What is triggers and stored procedures?
Explain what are commit and rollback in sql?
What is a print index?
can an automatic recovery be initiated by a user? : Sql server administration
Why do we partition data?
Is there any difference between primary key and unique with the not null condition?
What are different types of subquery?
What is NOT NULL Constraint in sql server 2012?
What is DCL?
How to find out the list schema name and table name for the database?
How many joins in sql server?
how do you test proper tcp/ip configuration windows machine? : Sql server database administration