91-9990449935 0120-4256464 |
MySQL count() FunctionThe MySQL count() function is used to return the count of an expression. It is used when you need to count some records of your table. Syntax: Parameter explanationaggregate_expression: It specifies the column or expression whose NON-NULL values will be counted. table_name: It specifies the tables, from where you want to retrieve records. There must be at least one table listed in the FROM clause. WHERE conditions: It is optional. It specifies the conditions that must be fulfilled for the records to be selected. MySQL count() function exampleConsider a table named "officers", having the following data. Execute the following query: Output: Here, you can see that that the COUNT function calculates the total number of officers in the table.
Next TopicMySQL sum()
|