Your question is Top Sellers From Meeting Graph. Start with the requirements and the three tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Deliverr's analytics team wants to identify the strongest collaboration pairs from internal meetings. Write a PostgreSQL query that returns the top three pairs of people who attended completed meetings together during January 2025.
| Column | Type | Description |
|---|---|---|
| person_idPK | INT | Unique employee identifier |
| full_name | VARCHAR(100) | Employee display name |
| team | VARCHAR(80) | Employee team |
| Column | Type | Description |
|---|---|---|
| meeting_idPK | INT | Unique meeting identifier |
| organizer_id | INT | Employee who organized the meeting |
| meeting_date | DATE | Calendar date of the meeting |
| status | VARCHAR(20) | Meeting lifecycle status |
| Column | Type | Description |
|---|---|---|
| meeting_idPK | INT | Referenced meeting identifier |
| person_idPK | INT | Referenced attendee identifier |