Finance Path · Mission 1 of 25Starter

Chart of accounts quick look

SELECT * with LIMIT to preview a table

Back to Finance

The Brief

Daniel OkaforControlleraccounting

Welcome aboard — give me a sanity check on the chart of accounts. Pull the first 10 rows of `dim_accounts` so I know the data loaded correctly. All columns.

You'll practice

SELECTLIMITData quality

Tables available

dim_accounts

Hints (3)

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

Hint 1

The chart of accounts lives in `dim_accounts`. `SELECT *` returns every column.

Hint 2

Add `LIMIT 10` so you don't fetch every row — there aren't many, but it's a habit worth building.

Hint 3

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