对于统计应用程序,具有如下表结构:
unique_id | browser_family | os | date_time | js_enabled | flash_enabled | non_binary_field
1 firefox w7 ... 1 0 yes
2 chrome w7 ... 1 1 no
3 ie9 wx ... 0 0 yes
所以,我想在任何字段上使用 where 子句执行查询,并让它为我提供这些条件的 js_enabled=1、flash_enabled =0、non_binary_field = 'yes' 计数(比如 `os` = 'w7' 和日期(`date_time`)='01-08-2012')。
结果将是:
count(js_enabled=1) | count(flash_enabled=1) | count(non_binary_field='yes')
2 1 1
这可能在单个查询中吗?
谢谢!