Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

SQL Table Row Count

There are couple ways to Count row of a Sql Table. Below is the quickest script to do that.

1
2
USE [YourDatabaseName]
SELECT COUNT(*) AS "TotalRow" FROM [YourTableName]


This post first appeared on Virtual Species, please read the originial post: here

Share the post

SQL Table Row Count

×

Subscribe to Virtual Species

Get updates delivered right to your inbox!

Thank you for your subscription

×