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
Hello,
I am trying to do a join on snowflake database when loading data but I got an error that "The field already exists in the record". What does it mean? That there can't be same column/field name in both tables? I want just to obtain LEFT JOIN,. It doesn't look like something extraordinary
select * from "Database"."Schema"."Table" as JOB
JOIN "Database"."Schema"."Table" as CAT
ON JOB.ID=CAT.ID
AND JOB.CODE=CAT.CODE
I have filled server, warehouse, role, database in advanced options of Snowflake connector
Thank you for your help
Solved! Go to Solution.
@Pbiuserr , You can not take the same column name from both tables. So take all fields from one table and selected them from another table, rename the columns in the query if needed
select JOB,*, CAT.ID as cat_ID from "Database"."Schema"."Table" as JOB
JOIN "Database"."Schema"."Table" as CAT
ON JOB.ID=CAT.ID
AND JOB.CODE=CAT.CODE
@Pbiuserr , You can not take the same column name from both tables. So take all fields from one table and selected them from another table, rename the columns in the query if needed
select JOB,*, CAT.ID as cat_ID from "Database"."Schema"."Table" as JOB
JOIN "Database"."Schema"."Table" as CAT
ON JOB.ID=CAT.ID
AND JOB.CODE=CAT.CODE
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 36 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 74 | |
| 66 | |
| 65 |