How to query and count the quantity in mysql
In mysql, you can use the SELECT statement to query data, and use the COUNT() function to count the number of query results. The syntax is "SELECT COUNT(*) FROM table name [...];" or "SELECT COUNT (field name) FROM table name[...];".
The operating environment of this tutorial: windows7 system, mysql8 version, Dell G3 computer.
In mysql, you can use the SELECT statement to query data, and use the COUNT() function to count the number of query results. The syntax format of
SELECT
is as follows:
SELECT {* | <字段列名>} [ FROM <表 1>, <表 2>… [WHERE <表达式> [GROUP BY <group by definition> [HAVING <expression> [{<operator> <expression>}…]] [ORDER BY <order by definition>] [LIMIT[<offset>,] <row count>] ]
Among them, the meaning of each clause is as follows:
{*|<Field column name>}
A field list containing the asterisk wildcard character, indicating the name of the field to be queried.##
,
…
, Table 1 and Table 2 represent the source of query data, which can be single or multiple.
WHERE
is optional. If selected, the query data must meet the query conditions.
GROUP BY< Field >
, this clause tells MySQL how to display the queried data and group it according to the specified field.
- ##[ORDER BY< field>]
##[LIMIT[, this clause tells MySQL in what order to display the queried data, the sorting that can be done is in ascending order ( ASC) and descending (DESC), which is ascending by default.
,] ]
- , this clause tells MySQL to display the number of queried data items each time.
COUNT()The function counts the total number of record rows contained in the data table, or returns the number of data rows contained in the column based on the query results
- COUNT(*)
- Calculate the total number of rows in the table, regardless of whether a column has a value or a null value.
- Counts the number of rows that do not contain a
NULL
value.
COUNT(DISTINCT expression) - Returns the number of unique rows that do not contain a
NULL
BIGINTvalue
## The return type of the #COUNT() function is
. If no matching row is found, the COUNT() function returns
.
demoMySQL COUNT example
Let’s create a new table named
and insert some sample data.
USE testdb; -- create a demos table CREATE TABLE IF NOT EXISTS demos( id int auto_increment primary key, val int ); -- insert some sample data INSERT INTO demos(val) VALUES(1),(1),(2),(2),(NULL),(3),(4),(NULL),(5); -- select data from demos table SELECT * FROM demos;
Copy after loginExecute the above query statement and get the following results-
demos<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>+----+------+ | id | val | +----+------+ | 1 | 1 | | 2 | 1 | | 3 | 2 | | 4 | 2 | | 5 | NULL | | 6 | 3 | | 7 | 4 | | 8 | NULL | | 9 | 5 | +----+------+ 9 rows in set</pre><div class="contentsignin">Copy after login</div></div>
To count all rows in thetable, please use
COUNT(*)function, as shown below:
val<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>mysql> SELECT COUNT(*) FROM demos; +----------+ | COUNT(*) | +----------+ | 9 | +----------+ 1 row in set</pre><div class="contentsignin">Copy after login</div></div>
You can add aWHERE
clause to specify a condition to count, for example, count onlycolumns that contain values equal to ## For rows #2
, use the following query:
mysql> SELECT COUNT(*) FROM demos WHERE val = 2; +----------+ | COUNT(*) | +----------+ | 2 | +----------+ 1 row in set
Copy after loginIf the
valcolumn is specified in the
COUNT function, theCOUNT
function counts All rows whose
valcolumn contains only non-
NULLvalues. See the following query: Two
NULLvalues in the
SELECT COUNT(*) FROM demos WHERE val = 2;
Copy after loginval column will be ignored.
operator to theTo count the unique rows in the
demostable, you can add the
DISTINCTCOUNT
function, as in the following query statement:
SELECT COUNT(DISTINCT val) FROM demos;
Copy after loginExecute the above query statement and get the following results-
mysql> SELECT COUNT(DISTINCT val) FROM demos; +---------------------+ | COUNT(DISTINCT val) | +---------------------+ | 5 | +---------------------+ 1 row in set
Copy after loginIgnore the two duplicate values
1,2
and twoin the count NULL
function in combination with thevalue.
MySQL COUNT with GROUP BY
We often use the
COUNTGROUP BY
clause to count data in different groups. See the structure of theproducts
table below -
mysql> desc products; +--------------------+---------------+------+-----+---------+------------------+ | Field | Type | Null | Key | Default | Extra | +--------------------+---------------+------+-----+---------+------------------+ | productCode | varchar(15) | NO | PRI | | | | productName | varchar(70) | NO | MUL | NULL | | | productLine | varchar(50) | NO | MUL | NULL | | | productScale | varchar(10) | NO | | NULL | | | productVendor | varchar(50) | NO | | NULL | | | productDescription | text | NO | | NULL | | | quantityInStock | smallint(6) | NO | | NULL | | | buyPrice | decimal(10,2) | NO | | NULL | | | MSRP | decimal(10,2) | NO | | NULL | | | stockValue | double | YES | | NULL | STORED GENERATED | +--------------------+---------------+------+-----+---------+------------------+ 10 rows in set
Copy after loginFor example, to find the number of products in each product line, you can use the
COUNTfunction with
GROUP BY clause, as shown in the following query:SELECT productline, count(*) FROM products GROUP BY productline;
Copy after loginExecute the above code and get the following results -
mysql> SELECT productline, count(*) FROM products GROUP BY productline; +------------------+----------+ | productline | count(*) | +------------------+----------+ | Classic Cars | 38 | | Motorcycles | 13 | | Planes | 12 | | Ships | 9 | | Trains | 3 | | Trucks and Buses | 11 | | Vintage Cars | 24 | +------------------+----------+ 7 rows in set
Copy after loginTo find the product quantity provided by the supplier, please use the following query:
Execute the above code and get the following results-SELECT productvendor, count(*) FROM products GROUP BY productvendor;
Copy after loginTo find which supplier provides at leastmysql> SELECT productvendor, count(*) FROM products GROUP BY productvendor; +---------------------------+----------+ | productvendor | count(*) | +---------------------------+----------+ | Autoart Studio Design | 8 | | Carousel DieCast Legends | 9 | | Classic Metal Creations | 10 | | Exoto Designs | 9 | | Gearbox Collectibles | 9 | | Highway 66 Mini Classics | 9 | | Min Lin Diecast | 8 | | Motor City Art Classics | 9 | | Red Start Diecast | 7 | | Second Gear Diecast | 8 | | Studio M Art Models | 8 | | Unimax Art Galleries | 8 | | Welly Diecast Productions | 8 | +---------------------------+----------+ 13 rows in set
Copy after login9
products, you can use theHAVING
clause inCOUNT
function, as shown in the following query statement:
SELECT productvendor, count(*) FROM products GROUP BY productvendor HAVING count(*) >= 9;
Copy after loginExecute the above code and get the following results -
mysql> SELECT productvendor, count(*) FROM products GROUP BY productvendor HAVING count(*) >= 9; +--------------------------+----------+ | productvendor | count(*) | +--------------------------+----------+ | Carousel DieCast Legends | 9 | | Classic Metal Creations | 10 | | Exoto Designs | 9 | | Gearbox Collectibles | 9 | | Highway 66 Mini Classics | 9 | | Motor City Art Classics | 9 | +--------------------------+----------+ 6 rows in set
Copy after loginMySQL COUNT IF
can be used# Control flow functions in the ##COUNTfunction, such as
IF,
IFNULL,
CASE
, etc. to count rows whose values match the condition.For example, the following query can find how many canceled, suspended and disputed orders:
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>SELECT COUNT(IF(status=&#39;Cancelled&#39;,1, NULL)) &#39;Cancelled&#39;, COUNT(IF(status=&#39;On Hold&#39;,1, NULL)) &#39;On Hold&#39;, COUNT(IF(status=&#39;Disputed&#39;,1, NULL)) &#39;Disputed&#39; FROM orders;</pre><div class="contentsignin">Copy after login</div></div>
Execute the above code and get the following results-<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>mysql> SELECT COUNT(IF(status=&#39;Cancelled&#39;,1, NULL)) &#39;Cancelled&#39;, COUNT(IF(status=&#39;On Hold&#39;,1, NULL)) &#39;On Hold&#39;, COUNT(IF(status=&#39;Disputed&#39;,1, NULL)) &#39;Disputed&#39; FROM orders; +-----------+---------+----------+ | Cancelled | On Hold | Disputed | +-----------+---------+----------+ | 6 | 4 | 3 | +-----------+---------+----------+ 1 row in set</pre><div class="contentsignin">Copy after login</div></div>If the status of the order Canceled, reserved or disputed, the IF function will return 1<p>, otherwise </p>NULL<p> will be returned. The </p>COUNT<p> function only counts <code>1
, notNULL
values, so the query returns the number of orders based on the corresponding status.[Related recommendations:
mysql video tutorial
]The above is the detailed content of How to query and count the quantity in mysql. For more information, please follow other related articles on the PHP Chinese website!
Statement of this WebsiteThe content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cnHot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌Repo: How To Revive Teammates1 months ago By 尊渡假赌尊渡假赌尊渡假赌Hello Kitty Island Adventure: How To Get Giant Seeds4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌How Long Does It Take To Beat Split Fiction?3 weeks ago By DDDR.E.P.O. Save File Location: Where Is It & How to Protect It?3 weeks ago By DDDHot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
PHP's big data structure processing skills May 08, 2024 am 10:24 AM
Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.
How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM
MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.
How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM
Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.
How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM
How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.
How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM
To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.
How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM
One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app
How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM
Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.
The difference between oracle database and mysql May 10, 2024 am 01:54 AM
Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.