Credit Risk & Banking Path · Mission 1 of 30Starter

Peek at the customer book

SELECT * with LIMIT to preview a dimension table

Back to Credit Risk & Banking

The Brief

Priya RamanathanVP Retail Bankingretail-banking

Welcome to the team. Before we touch anything important, let's make sure the customer file loaded correctly. Pull the first 10 rows of `banking_customers` — all columns. I just want eyes on the shape of it.

You'll practice

SELECTLIMITData quality

Tables & columns available

banking_customersdim7 columns
ColumnTypeKey
customer_idINTPK
first_nameTEXT
last_nameTEXT
date_of_birthTEXT
stateTEXT
onboarded_dateTEXT
is_primary_onlyINT

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 at 10 rows.

Hint 2

Add `LIMIT 10` — always cap previews. A production customer table has millions of rows, and forgetting the LIMIT is the fastest way to lock up a dev database.

Hint 3

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