Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
i am working on building semantic model where i encountered many to many between case and product table as shown below, this is valid relationship between case and product tables, source for power bi is snowflake, i do not want to create bridge table in power bi , is there a way to handle this in snowflake?
Solved! Go to Solution.
Handling many-to-many relationships directly in Snowflake without creating a bridge table in Power BI is indeed possible.
CREATE TABLE CASE_PRODUCT (
CASE_ID NUMBER REFERENCES CASE(CASE_ID),
PRODUCT_ID NUMBER REFERENCES PRODUCT(PRODUCT_ID)
);
Handling many-to-many relationships directly in Snowflake without creating a bridge table in Power BI is indeed possible.
CREATE TABLE CASE_PRODUCT (
CASE_ID NUMBER REFERENCES CASE(CASE_ID),
PRODUCT_ID NUMBER REFERENCES PRODUCT(PRODUCT_ID)
);
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |