What discord author got the most reactions to their messages?
Query Name
guild_author_most_reactions
SQL Query
select
authors_t.author_name,
authors_t.nickname,
reaction_count_t.reaction_count,
guilds_t.guild_name,
reaction_count_t.author_guild_id,
guilds_t.id as guild_id
from
(
select
author_guild_id,
sum(reaction_count) as reaction_count
from
reactions_t
where
guild_id in ( (select id from guilds_t limit 1) )
group by author_guild_id
) as reaction_count_t
join authors_t on reaction_count_t.author_guild_id = authors_t.id
join guilds_t on authors_t.guild_id = guilds_t.id
order by reaction_count desc;
Backlinks
- Who is worth getting to know on Discord DAO Guilds?
- What discord messages were reacted to the most from this particular author?
- What discord author got the most distinct reactions to their messages?
- What discord attachment message has the most reactions?
- Questions for Discord Data
- Discord Guild Specific Report
- Queries Implemented in queries.py
- Discord Reaction Specific Queries
- Discord Author Specific Queries