Exam SnowPro Core All QuestionsBrowse all questions from this exam
Question 726

What is a characteristic of materialized views in Snowflake?

    Correct Answer: A

    Materialized views in Snowflake have a limitation that they cannot include joins, including self-joins. This means the underlying query of a materialized view must query only a single table. Therefore, the characteristic of materialized views in Snowflake is that they do not allow joins.

Discussion
vinny2020Option: A

https://docs.snowflake.com/en/user-guide/views-materialized - A materialized view can query only a single table. - Joins, including self-joins, are not supported.

JG1984Option: C

Materialized views can be created on a single table or on multiple tables. The underlying query of a materialized view can contain any valid Snowflake query, including joins, aggregations, and window functions. CREATE MATERIALIZED VIEW my_view AS SELECT customer_id, customer_name, order_id, order_date FROM customers JOIN orders ON customers.customer_id = orders.customer_id; CREATE MATERIALIZED VIEW my_view AS SELECT customer_id, SUM(order_total) AS total_order_amount FROM orders GROUP BY customer_id;

subhataanu

after materialized view is created, it cannot be used to join with any other view / table. rite?

vinny2020Option: A

https://docs.snowflake.com/en/user-guide/views-materialized - A materialized view can query only a single table. - Joins, including self-joins, are not supported.

mickies9Option: A

Materialized views don't allow join

KarthyJayOption: A

https://docs.snowflake.com/en/user-guide/views-materialized

Ram9198Option: A

https://docs.snowflake.com/en/user-guide/views-materialized#label-limitations-on-creating-materialized-views

HeetecOption: A

A is correct

MultiCloudIronManOption: A

Correct

happykeieiekekOption: A

Answer is A The following limitations apply to creating materialized views: A materialized view can query only a single table. Joins, including self-joins, are not supported.