I need to query all users from the DB who are writing for our blog and therefore belong to the role contributors. Furthermore it would be nice if I could exclude those users who did not make any posts yet. Please note: I need the user IDs.
Right now my query looks like this (because I do not know how to filter for the role and number of posts):
$authors = $wpdb->get_results("SELECT ID FROM $wpdb->users");