SELECT specific columns (not SELECT *)
Priya wants to send the month-end variance reports to cost center owners. Can you pull `cost_center_name`, `department`, and `owner_email` from `dim_cost_centers`? All of them — I'll paste it into the distribution list.
Each hint you reveal reduces the XP you can earn. Try the query first.
`dim_cost_centers` has 8 rows and more columns than we need. Select only the three Mei asked for.
No WHERE clause needed — she wants every cost center.
`SELECT cost_center_name, department, owner_email FROM dim_cost_centers`.