Marketing Analytics Path · Mission 2 of 30Starter

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 & columns available

dim_campaignsdim7 columns
ColumnTypeKey
campaign_idINTPK
campaign_nameTEXT
channelTEXT
start_dateTEXT
end_dateTEXT
budgetREAL
statusTEXT

Hints (3)

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

Hint 1

Campaigns live in one dimension table. Alex asked for three specific columns — spell out only those, don’t `SELECT *`.

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 *