SELECT * with LIMIT to preview a table
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.
Each hint you reveal reduces the XP you can earn. Try the query first.
The chart of accounts lives in `dim_accounts`. `SELECT *` returns every column.
Add `LIMIT 10` so you don't fetch every row — there aren't many, but it's a habit worth building.
Full query: `SELECT * FROM dim_accounts LIMIT 10`.