Marketing Analytics Path · Mission 1 of 30Starter

Welcome — preview the customer table

SELECT all customers and understand their basic attributes

Back to Marketing Analytics

The Brief

Alex ChenMarketing Managerslack-dm

Hey — welcome aboard! Before standup can you pull up `dim_customers` and grab the first 10 rows? Just want to see what we're working with before we start digging in. All columns is fine.

You'll practice

SELECTLIMITData quality

Tables & columns available

dim_customersdim9 columns
ColumnTypeKey
customer_idINTPK
first_nameTEXT
last_nameTEXT
emailTEXT
signup_dateTEXT
cityTEXT
stateTEXT
ageINT
genderTEXT

Hints (3)

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

Hint 1

The customer table is a `dim_` table. Alex wants a quick preview — just the first handful of rows, not the whole 500-row dump.

Hint 2

You need all 9 columns: customer_id, first_name, last_name, email, signup_date, city, state, age, gender

Hint 3

Make sure you're using `LIMIT 10` — without it you'll load all 500 rows. The query is just `SELECT * FROM dim_customers LIMIT 10`