Home > Database > Mysql Tutorial > body text

MySQL statistics sum Select Sum

黄舟
Release: 2016-12-27 17:35:11
Original
3932 people have browsed it

Sum of statistical data

SELECT SUM() FROM syntax is used to calculate the sum of statistical data from the data table.

Syntax:

SELECT SUM(column) FROM tb_name
Copy after login

This SQL syntax is used to count the sum of values ​​of a certain numerical type field. SUM() cannot contain multiple fields. Although string and other types can be executed, Meaningless.

Example:

SELECT SUM(uid) FROM user
Copy after login

Get query results:

10
Copy after login

Statistical maximum data

SELECT MAX() FROM syntax is used to extract data from the data table Count the maximum data of a certain field.

Syntax:

SELECT MAX(column) FROM tb_name
Copy after login

This SQL syntax is used to count the maximum value of a certain numerical type field. There cannot be multiple fields in MAX().

Example:

SELECT MAX(uid) FROM user
Copy after login

Get the query results:

4
Copy after login

The above is the content of the MySQL statistical data and Select Sum. For more related content, please pay attention to the PHP Chinese website (www. php.cn)!


Related labels:
source:php.cn
Statement of this Website
The 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.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!