Consumer Lending Analyst Path · Mission 1 of 30Starter

Peek at the application book

SELECT * with LIMIT to preview a HMDA-shaped application table

The Brief

Marcus HollandChief Credit Officerconsumer-lending

Welcome to the credit floor. Before we touch any HMDA submissions or vintage curves, I need eyes on the application file. Pull the first 10 rows of `lending_applications` — all columns. I just want a feel for the row shape and what fields the LAR generator hands us.

You'll practice

SELECTLIMITData quality

Tables & columns available

lending_applicationsfact18 columns
ColumnTypeKey
app_idINTPK
customer_idINTFK → retail_customers
product_idINTFK → retail_products
application_dateTEXT
requested_amountREAL
requested_termINT
loan_purposeTEXT
action_takenINT
denial_reason_1INT
aus_recommendationTEXT
rate_spreadREAL
lien_statusINT
occupancyINT
ethnicityINT
raceINT
sexINT
age_bucketTEXT
property_tractTEXTFK → lending_geography

Hints (3)

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

Hint 1

Production HMDA tables run into millions of rows — you can't preview them by fetching everything. Reach for the row-cap clause in your SQL dialect.

Hint 2

The cap is the last clause in the SELECT. It takes one integer — the row count the briefing asked for.

Hint 3

Marcus wants a feel for the whole row shape, so the projection should be every column, not a hand-picked subset. Pair the star projection with the cap.