This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/sql.md
2022-12-27 13:31:32 -05:00

658 B

Most common servers

SELECT COUNT(*), host FROM followers GROUP BY host ORDER BY count DESC;

Most popular twitter users

SELECT COUNT(*), acct FROM (SELECT unnest(followings) as follow FROM followers) AS f INNER JOIN twitter_users ON f.follow=twitter_users.id GROUP BY acct ORDER BY count DESC;

Most active users

SELECT array_length(followings, 1) AS l, acct, host FROM followers ORDER BY l DESC;

Lag

SELECT COUNT(*), date_trunc('day', lastsync) FROM (SELECT unnest(followings) as follow FROM followers GROUP BY follow) AS f INNER JOIN twitter_users ON f.follow=twitter_users.id GROUP BY date_trunc;