本文介绍了连续非空值的计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在以下查询中,计数应为3和1。计数应该是连续获得的点数。因此,一旦用户无法获得任何积分,计数就会重新启动。
The count should be 3 and 1 in the following query. The count should be of the points earned consecutively. So once the user fails to earn any points, the count restarts.
mysql> select name, count(*) from sortest group by name, (points = 0) OR (points is NULL) having name= 'john';
+------+----------+
| name | count(*) |
+------+----------+
| john | 4 |
| john | 2 |
+------+----------+
2 rows in set (0.00 sec)
mysql> select * from sortest;
+----+------+--------+
| id | name | points |
+----+------+--------+
| 1 | john | 12 |
| 2 | john | 23 |
| 3 | john | 43 |
| 4 | hari | NULL |
| 5 | hari | 56 |
| 6 | john | NULL |
| 7 | hari | 0 |
| 8 | john | 44 |
| 9 | john | 0 |
| 10 | hari | 43 |
| 11 | hari | 44 |
| 12 | hari | 78 |
| 13 | hari | 0 |
+----+------+--------+
13 rows in set (0.00 sec)
mysql> show create table sortest\G
*************************** 1. row ***************************
Table: sortest
Create Table: CREATE TABLE `sortest` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(100) default NULL,
`points` int(11) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
case,john的计数应该是5,1和2
In this case, john's count should be 5, 1 and 2
5和1,因为它以0或NULL和2结束,因为它还没有用0或NULL
5 and 1 because it ends with 0 or NULL and 2 because it has not yet closed with the 0 or NULL
mysql> select * from sortest;
+----+------+--------+
| id | name | points |
+----+------+--------+
| 1 | john | 12 |
| 2 | john | 23 |
| 3 | john | 43 |
| 4 | hari | NULL |
| 5 | hari | 56 |
| 6 | john | NULL |
| 7 | hari | 0 |
| 8 | john | 44 |
| 9 | john | 0 |
| 10 | hari | 43 |
| 11 | hari | 44 |
| 12 | hari | 78 |
| 13 | hari | 0 |
| 14 | john | 55 |
| 15 | john | 95 |
+----+------+--------+
15 rows in set (0.00 sec)
mysql> select name, count(*) from sortest group by name, (points = 0) OR (points is NULL) having name= 'john';
+------+----------+
| name | count(*) |
+------+----------+
| john | 6 |
| john | 2 |
+------+----------+
2 rows in set (0.00 sec)
推荐答案
选择最大连胜数:
SELECT name, MAX(cnt)
FROM (
SELECT name, COUNT(*) AS cnt
FROM (
SELECT sortest.*,
@r := @r + ((COALESCE(@name, name) <> name) OR (COALESCE(points, 0) = 0)) AS series,
@name := name
FROM (
SELECT @name := NULL,
@r := 0
) vars, sortest
ORDER BY
name, id
) q
WHERE points > 0
GROUP BY
name, series
) q2
GROUP BY
name
要选择所有胜出条纹:
SELECT name, COUNT(*) AS cnt
FROM (
SELECT sortest.*,
@r := @r + ((COALESCE(@name, name) <> name) OR (COALESCE(points, 0) = 0)) AS series,
@name := name
FROM (
SELECT @name := NULL,
@r := 0
) vars, sortest
ORDER BY
name, id
) q
WHERE points > 0
GROUP BY
name, series
这篇关于连续非空值的计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!