Made-With-ML icon indicating copy to clipboard operation
Made-With-ML copied to clipboard

issue in data engineering lesson

Open akashsonowal opened this issue 2 years ago • 2 comments

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

akashsonowal avatar Sep 17 '23 11:09 akashsonowal

I get the same error too, I don't know if the query p.id = t.id is true or not.

teddythinh avatar Dec 25 '23 10:12 teddythinh

Looks like there is no id column in datasets/tags.csv. Hence the error

Shyam4801 avatar Jun 30 '24 02:06 Shyam4801