Mysql aggregate function nested use operation

Mysql aggregate function nested use operation

Purpose: Nested use of MySQL aggregate functions

Aggregate functions cannot be nested directly, for example: max(count(*))

But you can use nested subqueries, eg:

Note: The following as must be written

select max(total) from ( select count(*) as total from blog group by btype) as aa;

Supplementary knowledge: Tips for using the MAX() and count() functions in MySQL

1. max() function

In the case of considering improving database IO, you can create an index ===> create index index name on table name (column name);

2. count() function

Question: count(*) and count(column)

* Includes null data in the table

Tips: You can use this feature of count(*) to process instances that are counted according to different conditions:

For example:

Query the number of movies in 2006 and 2007 in one SQL statement ===>select count(release_year='2006' or null ) as 'Number of movies in 2006', count(release_year='2007' or null ) as 'Number of movies in 2007' from movies;

The above article on nested use of MySQL aggregate functions is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL grouping queries and aggregate functions
  • MySQL uses aggregate functions to query a single table
  • Analysis of MySQL query sorting and query aggregation function usage
  • How to add conditional expressions to aggregate functions in MySql
  • MySQL aggregate function sorting

<<:  10 Best Practices for Building and Maintaining Large-Scale Vue.js Projects

>>:  Complete steps for using Nginx+Tomcat for load balancing under Windows

Recommend

Detailed explanation of the use of stat function and stat command in Linux

stat function and stat command Explanation of [in...

Some properties in CSS are preceded by "*" or "_".

Some properties in CSS are preceded by "*&qu...

TCP socket SYN queue and Accept queue difference analysis

First we must understand that a TCP socket in the...

Tutorial on using $attrs and $listeners in Vue

Table of contents introduce Example Summarize int...

Vue uses WebSocket to simulate the chat function

The effect shows that two browsers simulate each ...

CSS--overflow:hidden in project examples

Here are some examples of how I use this property ...

Solution to the CSS height collapse problem

1. High degree of collapse In the document flow, ...

XHTML 2.0 New Features Preview

<br />Before browsers can handle the next ge...

MySQL Server IO 100% Analysis and Optimization Solution

Preface During the stress test, if the most direc...

Solution to the problem of eight hours difference in MySQL insertion time

Solve the problem of eight hours time difference ...