From 99c50e5df3dd8baad3ab76053b16ca9916b93956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Sol=C3=ADs?= Date: Thu, 6 Mar 2025 09:31:37 -0600 Subject: [PATCH] feat: Improve the display of data for the large account finder --- friendica-find-largest-accounts.sh | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/friendica-find-largest-accounts.sh b/friendica-find-largest-accounts.sh index 80fdf60..9bb3a9c 100755 --- a/friendica-find-largest-accounts.sh +++ b/friendica-find-largest-accounts.sh @@ -34,19 +34,20 @@ db="friendica" order by count(*) desc \ limit 1000 \ ); \ - select c.url, \ + select \ c.\`id\`, \ - g.platform, \ - a.amount \ - from contact as c \ + c.name, \ + c.url, \ + g.platform, \ + (a.amount + o.amount + t.amount) as final_amount \ + from contact as c \ right join tmp_authors as a \ on c.id = a.\`author-id\` \ right join tmp_owners as o \ - on c.id = o.\`owner-id\` \ + on c.id = o.\`owner-id\` \ right join tmp_causers as t \ - on c.id = t.\`causer-id\` \ + on c.id = t.\`causer-id\` \ left join gserver as g \ - on g.id = c.gsid \ - where g.platform != \"lemmy\" \ - and g.platform != \"\" \ - limit 100;" + on g.id = c.gsid \ + order by final_amount asc \ + limit 1000;"