What is the activity per month of each discord guild measured in messages per month?
Query Name
guild_messages_month
Data Visualization
- Data Frame or Data Grid
- Heat Map
All Guilds SQL Query
select
distinct guilds_t.id, guilds_t.guild_name, month_timestamp, msg_count
from (
select
distinct DATE_TRUNC('month', msg_timestamp)
AS month_timestamp,
COUNT(guild_id) AS msg_count,
guild_id
FROM messages_t
GROUP BY guild_id, month_timestamp
) as month_messages_t
join guilds_t on month_messages_t.guild_id = guilds_t.id
order by guilds_t.id, month_timestamp;
SQL Query
select distinct guilds_t.id , guilds_t.guild_name, month_timestamp, msg_count from (
select
distinct DATE_TRUNC('month', msg_timestamp)
AS month_timestamp,
COUNT(guild_id) AS msg_count,
guild_id
FROM messages_t
where guild_id in ( (select id from guilds_t offset 0 limit 1) )
GROUP BY guild_id, month_timestamp
) as month_messages_t
join guilds_t on month_messages_t.guild_id = guilds_t.id
order by id, msg_count desc;
Similar Queries
- What is the activity per month of each discord guild measured in messages per month?
- How much activity for a specific discord guild per day of week?
- How much activity for a specific discord guild per month?
- What is the messages per month of a specific discord guild?
- What month was X discord guild the most active?
- What is the heat map of the most active months github activity style?
Backlinks
- What month was X discord guild the most active?
- What is the activity per month of each discord guild measured in messages per month?
- What is the activity of each month for each guild normalized on a single graph?
- How to measure peak engagement for specific sets of phrases within a specific discord guild?
- How to get the message count of each channel per month for a specific discord guild?
- Queries Comparing Discord Guilds
- Discord Guild Specific Report
- Queries Implemented in queries.py