1
"count"및 "having"속성으로 Drupal 7 쿼리를 작성하는 방법은 무엇입니까?
drupal7 표준에서 다음 쿼리를 작동시킬 수 없습니다. 누구든지 이것을 도울 수 있습니까? 조금 시급하다 ... SELECT n.nid AS nid, n.title AS title, count(n.title) AS ncount FROM node n INNER JOIN taxonomy_index tn ON n.nid = tn.nid WHERE (n.type = 'test') AND (tn.tid IN( 23,37)) AND (n.title LIKE '%name%') AND (n.status …