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
I was trying to run the data engineering lessons in my local.
The tags dataset don't have id column so inside dbt cloud development when we run this sql code, it throws an error as tags doesn't have id. Please correct me if am missing something.
-- models/labeled_projects/labeled_projects.sql SELECT p.id, created_on, title, description, tag FROM made-with-ml-XXXXXX.mlops_course.projectsp -- REPLACE LEFT JOINmade-with-ml-XXXXXX.mlops_course.tags t -- REPLACE ON p.id = t.id
The text was updated successfully, but these errors were encountered:
Hi @GokuMohandas,
I was trying to run the data engineering lessons in my local.
The tags dataset don't have id column so inside dbt cloud development when we run this sql code, it throws an error as tags doesn't have id. Please correct me if am missing something.
-- models/labeled_projects/labeled_projects.sql SELECT p.id, created_on, title, description, tag FROM
made-with-ml-XXXXXX.mlops_course.projectsp -- REPLACE LEFT JOIN
made-with-ml-XXXXXX.mlops_course.tagst -- REPLACE ON p.id = t.id
The text was updated successfully, but these errors were encountered: