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

Which use case will always cause an exploding join in Snowflake?

    Correct Answer: C

    A query that has not specified join criteria for tables will always cause an exploding join in Snowflake. This happens because the lack of join criteria results in a Cartesian product, where each row from one table is joined with every row from the other table, leading to a potentially enormous result set.

Discussion
EmiBOption: C

C. A query that has not specified join criteria for tables.

KarBiswaOption: C

https://docs.snowflake.com/en/user-guide/ui-snowsight-activity#label-exploding-join C is right option

lalit_2k311Option: C

C https://select.dev/posts/snowflake-query-profile

_yyuktaOption: C

C. A query that has not specified join criteria for tables

Isio05Option: C

C, other may cause issues but also may work correctly

HarpreetwalOption: C

C Correct, It's also called cartesian product

MultiCloudIronManOption: C

Answer is C

EmiBOption: A

A&C - both should