Free practice · single-choice · easy

Practice

State the order table grain

Each row has one unique order_id plus its date, region, revenue, and refund flag. What is the most defensible proposed grain?

Order extract · structure card

One row per order, with every field assigned a role

Observation
One completed or open order
Candidate key
order_id · complete and unique
Measure
revenue · quantitative · USD
Dimensions
order_date, region, refunded

The row grain and candidate key must be verified before revenue is summarized or tables are joined.

Choose one answer