Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam SnowPro Core All Questions

View all questions & answers for the SnowPro Core exam

Exam SnowPro Core topic 1 question 726 discussion

Actual exam question from Snowflake's SnowPro Core
Question #: 726
Topic #: 1
[All SnowPro Core Questions]

What is a characteristic of materialized views in Snowflake?

  • A. Materialized views do not allow joins.
  • B. Clones of materialized views can be created directly by the user.
  • C. Multiple tables can be joined in the underlying query of a materialized view.
  • D. Aggregate functions can be used as window functions in materialized views.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
vinny2020
Highly Voted 1 year, 3 months ago
Selected Answer: 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.
upvoted 8 times
...
mickies9
Most Recent 6 months, 2 weeks ago
Selected Answer: A
Materialized views don't allow join
upvoted 1 times
...
KarthyJay
9 months, 1 week ago
Selected Answer: A
https://docs.snowflake.com/en/user-guide/views-materialized
upvoted 1 times
...
[Removed]
1 year, 1 month ago
Selected Answer: A
https://docs.snowflake.com/en/user-guide/views-materialized#label-limitations-on-creating-materialized-views
upvoted 1 times
...
Heetec
1 year, 1 month ago
A is correct
upvoted 1 times
...
JG1984
1 year, 2 months ago
Selected Answer: 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;
upvoted 2 times
subhataanu
5 months, 2 weeks ago
after materialized view is created, it cannot be used to join with any other view / table. rite?
upvoted 1 times
...
...
vinny2020
1 year, 3 months ago
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.
upvoted 2 times
...
MultiCloudIronMan
1 year, 4 months ago
Selected Answer: A
Correct
upvoted 1 times
...
happykeieiekek
1 year, 4 months ago
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.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...