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 FROMmade-with-ml-XXXXXX.mlops_course.projectsp -- REPLACE LEFT JOINmade-with-ml-XXXXXX.mlops_course.tagst -- REPLACE ON p.id = t.id
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