You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @GokuMohandas, I have followed your course to use dbt to transform data.
At the step with writing query to join two tables projects and tags together with this code in the file dbt_transforms/models/labeled_projects/labeled_projects.sql:
SELECTp.id, created_on, title, description, tag
FROM`made-with-ml-359923.mlops_course.projects` p
LEFT JOIN`made-with-ml-359923.mlops_course.tags` t
ONp.id=t.id
I'm getting this error: Name id not found inside t at [9:13]
I believe the cause is there is no column id in the tags table so when I query on this line ON p.id = t.id, it throws this error. I also tested in BigQuery and it throws the same error.
The text was updated successfully, but these errors were encountered:
Hi @GokuMohandas, I have followed your course to use dbt to transform data.
At the step with writing query to join two tables
projects
andtags
together with this code in the filedbt_transforms/models/labeled_projects/labeled_projects.sql
:I'm getting this error:
Name id not found inside t at [9:13]
I believe the cause is there is no column
id
in thetags
table so when I query on this lineON p.id = t.id
, it throws this error. I also tested in BigQuery and it throws the same error.The text was updated successfully, but these errors were encountered: