Account
Categories

MySQL COUNT()


COUNT()
It returns the total count using the given argument.

Syntax:

COUNT(column_name)

Example:

SELECT COUNT(*) AS TotalRecords FROM employees;

    

Output: