Changes between Initial Version and Version 1 of Ticket #5569, comment 2
- Timestamp:
- 04/20/2014 06:17:09 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5569, comment 2
initial v1 1 1 Using the code bellow 2 2 {{{ 3 SELECT count( a.ID) FROMwp_users as u3 SELECT count(u.ID) FROM wp_users as u 4 4 LEFT JOIN wp_usermeta as um ON u.ID = um.user_id 5 5 where u.user_status = 0 and um.meta_key = 'activation_key'; 6 7 6 }}} 8 7