Marketing Analytics Path · Mission 2 of 25Starter

What campaigns are running?

Explore the dim_campaigns table and understand campaign attributes

Back to Marketing Analytics

The Brief

Alex ChenMarketing Managerslack-dm

Before the standup — can you pull a list of all our campaigns? I need to see the campaign name, channel, and status for each one. Just want to see the full picture of what we've been running.

You'll practice

SELECTExploration

Tables available

dim_campaigns

Hints (3)

Each hint you reveal reduces the XP you can earn. Try the query first.

Hint 1

All campaign info is in `dim_campaigns`. Alex only needs 3 columns: `campaign_name`, `channel`, and `status`

Hint 2

There are only 9 campaigns, so no LIMIT needed — just SELECT the three columns FROM dim_campaigns

Hint 3

Make sure you're selecting exactly 3 columns — `campaign_name`, `channel`, `status` — not using SELECT *