Finance Path · Mission 3 of 25Starter

What account types do we have?

DISTINCT to find unique values in a column

Back to Finance

The Brief

Jordan ReyesSenior Auditoraudit-review

Pre-audit check — give me every distinct `account_type` value in `dim_accounts`. I want to see the list exactly as it's stored, including any weird casing. Just one column: `account_type`.

You'll practice

DISTINCTData quality

Tables available

dim_accounts

Hints (3)

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

Hint 1

Use `SELECT DISTINCT account_type FROM dim_accounts` to dedupe values.

Hint 2

Do NOT apply LOWER() or TRIM() — Jordan wants to see the raw values to spot casing bugs.

Hint 3

You should see 7 distinct rows — one of them is a miscased duplicate.