Retail Banking Operations Path · Mission 1 of 30Starter

Peek at the customer book

SELECT * with LIMIT to preview a table

The Brief

Marcus ChenRetail Banking COOretail-ops

Welcome aboard. Before we touch any of the dashboards, let's make sure the customer file loaded correctly. Pull the first 10 rows of `retail_customers` — all columns. I just want eyes on the row shape.

You'll practice

SELECTLIMITData quality

Tables & columns available

retail_customersdim13 columns
ColumnTypeKey
customer_idINTPK
household_idTEXT
first_nameTEXT
last_nameTEXT
date_of_birthTEXT
stateTEXT
segmentTEXT
fico_currentINT
estimated_incomeREAL
kyc_riskTEXT
acquisition_channelTEXT
onboarded_dateTEXT
statusTEXT

Hints (3)

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

Hint 1

The customer table has hundreds of rows. To preview the data without fetching everything, think about how to cap the result.

Hint 2

Add `LIMIT 10` so you don't fetch every row — production customer tables have millions of rows and forgetting the cap is the fastest way to lock up a dev database.

Hint 3

You need every column from retail_customers — a star select is fine here — capped at 10 rows.