How to count the number of authors within a specific discord guild?
Query Name
guild_author_count
SQL Query
select
count(*)
from
authors_t
join guilds_t on guilds_t.id = authors_t.guild_id
where
is_bot = 'F'
and guild_id in ( (select id from guilds_t limit 1) );