RevOps & Sales Analytics Path · Mission 1 of 30Starter

Meet the opportunities table

SELECT * with LIMIT to preview a fact table

The Brief

Teddy OseiDirector of Revenue Operationsrevops

Welcome to the team. Before we touch any forecast work, preview the `revops_opportunities` table. Pull the first 10 rows, all columns. This is the fact table at the center of every report you'll write here — knowing its shape cold is table stakes.

You'll practice

SELECTLIMITSchema exploration

Tables & columns available

revops_opportunitiesfact10 columns
ColumnTypeKey
opportunity_idINTPK
account_idINTFK → revops_accounts
owner_user_idINTFK → revops_users
nameTEXT
stageTEXT
amountREAL
close_dateTEXT
created_dateTEXT
is_closedINT
is_wonINT

Hints (3)

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

Hint 1

The `revops_opportunities` table is the fact table we'll anchor most queries around. A production table can have hundreds of thousands of rows — always cap previews.

Hint 2

Add `LIMIT 10` — always cap previews. Forgetting the LIMIT is how juniors accidentally pull 500K opportunity rows into the editor and lock up dev.

Hint 3

Full query: `SELECT * FROM revops_opportunities LIMIT 10`.