How many messages per author in a specific discord guild?
Query Name
guild_author_most_messages
SQL Query
select
authors_t.author_name,
authors_t.nickname,
msg_count_per_author_t.msg_count,
msg_count_per_author_t.author_guild_id,
guilds_t.guild_name,
guilds_t.id as guild_id
from
(
select
count(*) as msg_count,
author_guild_id
from
messages_t
where
guild_id in ( (select id from guilds_t limit 1) )
group by author_guild_id
order by msg_count desc
) as msg_count_per_author_t
join authors_t on msg_count_per_author_t.author_guild_id = authors_t.id
join guilds_t on authors_t.guild_id = guilds_t.id
order by msg_count_per_author_t.msg_count desc;
Backlinks
- Who is worth getting to know on Discord DAO Guilds?
- Who is worth getting to know on Discord DAO Guilds?
- What discord user was the most active for a particular date range within a particular discord guild?
- How to visualize the message count of each author in a specific channel?
- How many times did a particular author post a particular discord guild?
- Discord Guild Specific Report
- Queries Implemented in queries.py
- Discord Author Specific Queries
- Discord Author Specific Queries