Forums
-
- Forum
- Posts
-
- Installation
- 28,438
- Troubleshooting
- 62,514
- Themes
- 10,430
- Plugins
- 15,337
- Requests & Feedback
- 14,959
- Showcase
- 3,256
-
This will show in you in PHPMYADMIN all users older than at least a month who have never posted:
SELECT ID,user_login,user_registered FROM wp_users
LEFT JOIN bb_posts ON ID=poster_id
WHERE user_registered<DATE_SUB(CURDATE(),INTERVAL 30 DAY)
AND poster_id is NULL