mirror of
https://github.com/GokuMohandas/Made-With-ML.git
synced 2026-03-09 07:12:37 -05:00
issue in data engineering lesson #54
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @akashsonowal on GitHub (Sep 17, 2023).
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 FROMmade-with-ml-XXXXXX.mlops_course.projectsp -- REPLACE LEFT JOINmade-with-ml-XXXXXX.mlops_course.tagst -- REPLACE ON p.id = t.id@teddythinh commented on GitHub (Dec 25, 2023):
I get the same error too, I don't know if the query
p.id = t.idis true or not.@Shyam4801 commented on GitHub (Jun 30, 2024):
Looks like there is no id column in datasets/tags.csv. Hence the error