Trending October 2023 # Guide To How Count() Function Work In Mysql # Suggested November 2023 # Top 10 Popular | Vibergotobrazil.com

Trending October 2023 # Guide To How Count() Function Work In Mysql # Suggested November 2023 # Top 10 Popular

You are reading the article Guide To How Count() Function Work In Mysql updated in October 2023 on the website Vibergotobrazil.com. We hope that the information we have shared is helpful to you. If you find the content interesting and meaningful, please share it with your friends and continue to follow and support us for the latest updates. Suggested November 2023 Guide To How Count() Function Work In Mysql

Introduction to MySQL count()

The MySQL COUNT() function provides several records in the result set from a table when an SQL SELECT statement is executed. This function does not count the NULL values. The count function gives a BIGINT value. This aggregate function returns all rows or only rows matched to specified conditions; if there is no row that matches, it returns 0. Here, the Aggregate function is a function that calculates some values and returns only a single value. We can use COUNT() in many ways, but it is necessary to understand how it works. We can receive different result values according to how we use it.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Syntax

The basic syntax for the count function is:

COUNT(*) COUNT(expression) COUNT( [DISTINCT] expression )

Explanation: The function has three forms explained as follows:

COUNT(*) function: It returns all the number of rows in a table returned by the SELECT query, including non-NULL, NULL, and duplicate rows from the table.

Note: * denotes ‘all’.

COUNT(expression) function: It provides the result of the expression counting the number of rows without NULL values.

COUNT(DISTINCT expression): It results in the number of rows containing non-NULL distinct values in the result set returned by the SELECT statement.

How does the COUNT() function work in MySQL?

The Count is an aggregate function that returns a single concise result working on a table’s entire set of rows.

Examples to Implement MySQL Count()

Let us say we have a table named Customers as a sample:

Note: In SQL, all the queries are case-insensitive.

Example #1

Using the MySQL COUNT(expression) function to get all records from the table using an expression value that does not contain a NULL value. The SQL query is:

Code:

SELECT COUNT(City) FROM Customers;

Output:

Example #2

For the same table, let us useMySQLCOUNT(*) function. Suppose we have executed the following statement:

Code:

SELECT COUNT(*) FROM Customers;

Output:

Explanation: This count function will return the rows count from the result set, which may contain or not contain NULL values.

Example #3

Now we will discuss onMySQLCOUNT(DISTINCT expression):

Code:

SELECT COUNT(DISTINCT City) FROM Customers;

Output:

Explanation: Then, in this function, the DISTINCT keyword will show the count for the records that are unique, not duplicated or repeated, and the values that are not NULL.

Example #4

We can also use the Count function like this MySQL COUNT() with GROUP BY. With the count(), we can use GROUP BY SQL clause so that it provides the number of records inside a group:

Code:

SELECT City, COUNT(*) FROM Customers GROUP BY City;

Explanation: In the above example, count() with the GROUP BY keyword groups all distinct cities and returns the count of each one.

Example #5

We can also use MySQL Count() with The HAVINGClause in the MySQL statement. In the above example, we can add a Having clause to filter the result from the above query further:

Code:

Output:

Explanation: Here, we have added count() with the HAVING clause, which results in the count of records from the table Customers GROUP BY City with a count greater than 1. The NULL value field is also counted.

Example #6

The Count() function can be combined with the Flow Control functions. You can associate Count() function with flow control functions to achieve better functionality.

For example, the flow control function IF() can be used with the expression that will be used for the Count() function in SQL Statement. This will be pretty supportive for quick data analysis inside a database. Let us consider the data from a table named Products with three fields ProductID, ProductName, Price, etc.:

Here is a field called Price in the table; every product has different prices recorded in that row. So, we can use this Price field to do the following query execution with the COUNT() and IF() functions in the SQL statement to return the result count:

Code:

SELECT COUNT(IF(Price <=10,1,NULL)) 'Low', COUNT(IF(Price BETWEEN 10 AND 30,1,NULL)) 'Medium', FROM Products;

Output:

Explanation: From the above statement, we can see that based on the Price in the Products table, we have divided them into three groups named Low, Medium, and High. Here we have used the IF() function in combination with to count() function to compare the different prices of the products to a given condition, and when the condition is matched, then it returns the result as above, where the count for three groups; low, medium, high are divided that fulfills the expression demand. If there is no match to a condition, it will return a NULL value, which means 0.

Example #7

We can even use the UNION operator with the COUNT function to obtain the MySQL row count of two or more tables. Using UNION, we can unite the result sets gained from every SELECT statement and apply count to get the number of rows of multiple tables in a database.

For example, we have executed a single SQL query below to return the row count of two tables, Customers and Products, from our sample database:

Code:

SELECT     'Customers' tablename,   COUNT(*) rows FROM   Customers UNION SELECT     'Products' tablename,   COUNT(*) rows FROM  Products;

Output:

SELECT   COUNT(*) FROM   Customers UNION SELECT COUNT(*) FROM  Products;

Example #8

We can use COUNT() in combination with the WHERE clause in the SELECT statement query if we want to count some table rows. Here, the number of expressions defined in the count function will be returned from the table based on particular criteria of the WHERE clause on the SELECT query. Let us take the previous Products table:

Code:

SELECT COUNT(ProductName) FROM Products WHERE SupplierID = 1;

Output:

Conclusion Recommended Articles

We hope that this EDUCBA information on “MySQL count()” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

You're reading Guide To How Count() Function Work In Mysql

Update the detailed information about Guide To How Count() Function Work In Mysql on the Vibergotobrazil.com website. We hope the article's content will meet your needs, and we will regularly update the information to provide you with the fastest and most accurate information. Have a great day!