如何从Drupal 7中的查询中检索“ count(*)”?查询需要包括自定义内容类型和自定义字段。
笔记
自定义内容类型:员工
自定义字段名称:field_employees_email
作为说明,我希望添加
在哪里field_employees_email ='example@example.com'
查询...
到目前为止,我有类似的东西:
$query = new EntityFieldQuery;
$result = $query
->entityCondition('entity_type', 'node')
->propertyCondition('status', 1) // Getting published nodes only.
->propertyCondition('type', 'employees') //Getting 'employees' type only.
// How do I include custom field as part of query?
->execute();
还有,有没有比这更简单的方法
$total = count($result);
从查询返回COUNT(*)?