Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Search This Blog
Thursday, May 6, 2010
SQL COUNT
SQL Server
>
Built-in Functions
>
COUNT
COUNT
returns the number of rows that matches a specified criteria.
The NULL values will not be count.
Example
SELECT
COUNT
(column_name)
FROM
table_name
SELECT
COUNT
(*)
FROM
table_name
SELECT
COUNT
(
DISTINCT
column_name)
FROM
table_name
Newer Post
Older Post
Home