adspace
Write the fastest query to find out how many rows exist in a table?
Answer Posted / Vivek Kishor
The fastest way to get the number of rows in a table is using the COUNT(*) function. However, if you want an exact count without considering NULL values, use COUNT(column_name) where column_name refers to a non-nullable column.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers