SELECT all patients and understand their basic attributes
Good morning. I just started this week and I'm still getting oriented to our data systems. Can you pull the first 10 rows from the patient table so I can see what fields we're working with? I need to understand the shape of our data before I can benchmark anything.
Each hint you reveal reduces the XP you can earn. Try the query first.
Patient data lives in `dim_patients`. You want a small preview, not all 800 rows
Think about how to preview every column without hand-listing them, and how to cap the result at a small sample
`SELECT ___ FROM dim_patients LIMIT ___` — what goes in each blank to get all columns and just 10 rows?