您的位置:首页 > 其它

在Drupal在统计记录的数量

2016-05-30 10:33 323 查看
原文在这里
http://drupal.stackexchange.com/questions/20705/count-results-in-views-using-aggregation
Yes, it is possible in Views 3 out of the box.

The idea is the same as in SQL aggregations. Lets see an example:

Edit your view and enable Views aggregations:



Remove default sort criteria.

Add fields “Content: Type” and “Content: Nid”:


Select COUNT function for Content: Nid:


To see what happens just turn on checkbox “Show the SQL query” at global Views settings page.
SELECT node.type AS node_type, COUNT(node.nid) AS nid
FROM
{node} node
WHERE (( (node.status = '1') ))
GROUP BY node_type
LIMIT 10 OFFSET 0


So, we are grouping nodes by node_type and calculating count for this groups.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: