In Snowflake, what is the core difference between a regular (non-materialized) view and a materialized view?
- aThe materialized view stores its result physically✓
- bThe materialized view exists only in warehouse memory
- cBoth always compile to the same execution plan
- dThe distinction is purely a naming convention
Explanation:A Snowflake materialized view stores its result set on disk and needs its own storage plus a refresh mechanism; a regular view has no stored data and re-runs its query on every reference.