Created
November 21, 2014 18:03
-
-
Save jameswilson/94b40755d6ea638490d1 to your computer and use it in GitHub Desktop.
Drupal Node Count by Type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tested with Drupal 6 and Drupal 7. | |
SELECT | |
COUNT(node.nid) AS count, | |
node_type.type AS type | |
FROM | |
node_type | |
LEFT JOIN | |
node ON node.type = node_type.type | |
GROUP BY | |
node.type | |
ORDER BY | |
count DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment