forked from GNUsocial/gnu-social
...and avoid duplicate results...
This commit is contained in:
parent
05fea4cdc6
commit
1471defff3
@ -43,7 +43,8 @@ $sql = 'SELECT file.* FROM file'.
|
|||||||
' JOIN file_to_post ON file_to_post.file_id=file.id'.
|
' JOIN file_to_post ON file_to_post.file_id=file.id'.
|
||||||
' WHERE'.
|
' WHERE'.
|
||||||
' NOT EXISTS (SELECT file_to_post.file_id FROM file_to_post WHERE file.id=file_to_post.file_id)'.
|
' NOT EXISTS (SELECT file_to_post.file_id FROM file_to_post WHERE file.id=file_to_post.file_id)'.
|
||||||
' OR NOT EXISTS (SELECT notice.id FROM notice WHERE notice.id=file_to_post.post_id);';
|
' OR NOT EXISTS (SELECT notice.id FROM notice WHERE notice.id=file_to_post.post_id)'.
|
||||||
|
' GROUP BY file.id;';
|
||||||
|
|
||||||
if ($file->query($sql) !== false) {
|
if ($file->query($sql) !== false) {
|
||||||
print " {$file->N} found.\n";
|
print " {$file->N} found.\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user