MySQL Query statistics per select statement
MySQL Query statistics per select statement
Where can I use a single select statement to implement MySQL Query statistics? It is too useful. for example, if you want to query the number of people who pass or fail, how can you query it?
The simple statement for MySQL Query statistics must be as follows:
Select a. name, count_neg, count_plus from
(Select count (id) as count_plus, name from score2 where score> = 60 group by name),
(Select count (id) as count_neg, name from score2 where score <= 60 group by name) B
Where a. name = B. name
That is, at least two statements must be used.
Today, we just found that mysql supports if, so we can use if to implement it creatively:
Select name, sum (if (score> = 60, 1, 0), sum (if (score <60, 1, 0) from score2 group by name
It is easy to use a single select statement to implement MySQL Query statistics.
If the principle is greater than 60, the value is 1, and sum is the count.
Count in the Mysql Query statistics function
Today, I encountered a question: count the total number of girls whose scores are greater than 90.
At the beginning, I wrote: $ SQL = "select girl's score from use where score> 90"; $ result = mysql_query ($ SQL );
$ Row = mysql_num_rows ($ result); echo "total: $ row ";
But it would be okay for 100. if it was 10000, would it be very slow !! Later, a friend told me to use the count function.
Change the preceding SQL statement:
$ SQL = "select count (*), female score from use group by female score having female score> 90 ";
In this way, the query statement is much faster.