What is the difference between the following two sql
statements
select count(*) from <tablename>
select count(col_name) from <tablename>
Answer Posted / kushi
for the First Qry,result is "No.of records"
for the second Qry,result is "No.of records for particular
columnname"
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
Does partitioning improve performance sql server?
What is collation sensitivity? Explain different types.
What is the maximum row of a size?
What language is sql server written in?
What do you mean by collation recursive stored procedure?
what are the different types of replication you can set up in sql server? : Sql server database administration
What is primary key index?
do you know what is a deadlock and what is a live lock? How will you go about resolving deadlocks? : Sql server database administration
How can sql server instances be hidden? : sql server security
How to loop through the result set with @@fetch_status?
Explain datetimeoffset data type in sal server 2008?
What are the system database in sql server 2008?
What is inner join? Explain with an example?
How to create an inline table-valued function?
Can a synonym name of a table be used instead of a table name in a select statement?