Last active
July 14, 2020 21:11
-
-
Save lkoudal/5f63f484c3dbf168bef7ac178262d836 to your computer and use it in GitHub Desktop.
Count how many different kind of meta_key's there are - and how many there are of each.
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
SELECT meta_key, COUNT( * ) c FROM `wp_postmeta` GROUP BY meta_key ORDER BY `c` ASC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment