开发者

MYSQL: GROUP BY on all values except 0 and null?

开发者 https://www.devze.com 2023-03-19 23:35 出处:网络
I have a simple SQL Query: SELECT tid, COUNT(*) AS bpn FROM mark_list WHERE userid = $userid GROUP BY tid

I have a simple SQL Query:

  SELECT tid, 
         COUNT(*) AS bpn
    FROM mark_list 
   WHERE userid = $userid 
GROUP BY tid

Now the column tid is basically a category list associated with each entry. The categories are unique numeric values.

What I am trying to do is get an overall count of how many records there as per userid, but I only want to count an entire category one time (meaning if category 3 has 10000 records, it should only receive a count of 1).

The caveat is that sometimes the category is listed as null or sometimes a 0. If the item has either a 0 or a 开发者_JS百科null, it has no category and I want them counted as their own separate entities and not lumped into a single large category.


Wheeee!

SELECT SUM(`tid` IS NULL) AS `total_null`,
       SUM(`tid` = 0) AS `total_zero`, 
       COUNT(DISTINCT `tid`) AS `other`
  FROM `mark_list`
 WHERE `user_id` = $userid

Edit: note that if total_zero is greater than 0, you will have to subtract one from the "other" result (because tid=0 will get counted in that column)


You can alter the query to not take into account those particular values (via the WHERE clause), and then perhaps run a separate query that ONLY takes into account those values.

There may be a way to combine it into only one query, but this way should work, too.

0

精彩评论

暂无评论...
验证码 换一张
取 消