AML & Fraud Analytics Path · Mission 1 of 30Starter

Meet the customer book

SELECT * with LIMIT to preview a dimension table

Back to AML & Fraud Analytics

The Brief

Marcus WellerDirector of AML Operationsaml-ops

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

You'll practice

SELECTLIMITData quality

Tables & columns available

aml_customersdim10 columns
ColumnTypeKey
customer_idINTPK
first_nameTEXT
last_nameTEXT
date_of_birthTEXT
emailTEXT
phoneTEXT
stateTEXT
statusTEXT
onboarded_dateTEXT
last_kyc_refreshTEXT

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 without fetching everything, think about how to cap the result at 10.

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 aml_customers — a star select is fine here — capped at 10 rows.