query to find un-grouped contacts

This commit is contained in:
friendica 2012-04-12 07:48:28 -07:00
parent 60871555f5
commit 73487989c0
1 changed files with 12 additions and 1 deletions

View File

@ -174,3 +174,14 @@ function random_profile() {
return dirname($r[0]['url']);
return '';
}
function contacts_not_grouped($uid) {
$r = q("select * from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) ",
intval($uid),
intval($uid)
);
return $r;
}