feat: Improve the display of data for the large account finder
This commit is contained in:
parent
1162155b25
commit
99c50e5df3
1 changed files with 11 additions and 10 deletions
|
@ -34,19 +34,20 @@ db="friendica"
|
||||||
order by count(*) desc \
|
order by count(*) desc \
|
||||||
limit 1000 \
|
limit 1000 \
|
||||||
); \
|
); \
|
||||||
select c.url, \
|
select \
|
||||||
c.\`id\`, \
|
c.\`id\`, \
|
||||||
g.platform, \
|
c.name, \
|
||||||
a.amount \
|
c.url, \
|
||||||
from contact as c \
|
g.platform, \
|
||||||
|
(a.amount + o.amount + t.amount) as final_amount \
|
||||||
|
from contact as c \
|
||||||
right join tmp_authors as a \
|
right join tmp_authors as a \
|
||||||
on c.id = a.\`author-id\` \
|
on c.id = a.\`author-id\` \
|
||||||
right join tmp_owners as o \
|
right join tmp_owners as o \
|
||||||
on c.id = o.\`owner-id\` \
|
on c.id = o.\`owner-id\` \
|
||||||
right join tmp_causers as t \
|
right join tmp_causers as t \
|
||||||
on c.id = t.\`causer-id\` \
|
on c.id = t.\`causer-id\` \
|
||||||
left join gserver as g \
|
left join gserver as g \
|
||||||
on g.id = c.gsid \
|
on g.id = c.gsid \
|
||||||
where g.platform != \"lemmy\" \
|
order by final_amount asc \
|
||||||
and g.platform != \"\" \
|
limit 1000;"
|
||||||
limit 100;"
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue