query to find un-grouped contacts

2022.09-rc
friendica 2012-04-12 07:48:28 -07:00
rodzic 60871555f5
commit 73487989c0
1 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -173,4 +173,15 @@ function random_profile() {
if(count($r))
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;
}