Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
MAU Action Query in Lucidchart
00:00
5 left

MAU Action Query in Lucidchart

MediumSQL · PostgreSQL

Problem

Lucid monitors monthly active users who edit templates in Lucidchart. Write a SQL query to calculate the number of distinct users who performed a template_edit action on Lucidchart templates during each of the six calendar months from April through September 2026.

Output

  1. One row per calendar month with activity, using the first day of the month as activity_month.
  2. Columns: activity_month and mau, where mau is the number of distinct users who performed the qualifying action.
  3. Include only template_edit events associated with the Lucidchart product, and order rows by activity_month ascending.

Schema

template_events
ColumnTypeDescription
event_idPKINTEGERUnique event identifier
user_idINTEGERUser who performed the action
template_idINTEGERTemplate associated with the event
action_nameVARCHAR(50)Action performed by the user
occurred_atTIMESTAMPTimestamp when the action occurred
templates
ColumnTypeDescription
template_idPKINTEGERUnique template identifier
product_nameVARCHAR(40)Lucid product containing the template
template_nameVARCHAR(100)Display name of the template
Tablestemplate_eventstemplates
Interviewer

Your question is MAU Action Query in Lucidchart. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.