Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

Count

Example

Retrieve the count of products in the “Products” table.

SELECT Count(ProductID) AS NumberOfProducts FROM Products;

Definition and Usage

The Count() function returns the number of non-null records retrieved by a select query.

Syntax

Count(expression)

Parameter Values

Parameter

Description

expression

Required: This refers to either a field or a string value.

Technical Details

Works in:

 From Access 2000