Which statements describe characteristics of the use of materialized views in Snowflake? (Choose two.)
Which statements describe characteristics of the use of materialized views in Snowflake? (Choose two.)
Materialized views in Snowflake cannot include nested subqueries, and they support MIN and MAX aggregates. These are key characteristics because nested subqueries can be complex and impact performance, while MIN and MAX are common aggregate functions used in querying. Functions in materialized views must be deterministic, thus non-deterministic functions like CURRENT_TIME cannot be included.
https://docs.snowflake.com/en/user-guide/views-materialized
Answer is B,D and is validated
Time functions are non deterministic
https://docs.snowflake.com/en/user-guide/views-materialized#limitations-on-creating-materialized-views * The aggregate functions that are supported in materialized views are: MIN/MAX * Functions used in a materialized view must be deterministic. For example, using CURRENT_TIME or CURRENT_TIMESTAMP is not permitted.