-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
I'm trying to JOIN two tables, where the B table has additional information for some rows in the A. I can't get the query to work as I expect.
a.csv:
alpha
a-one
a-twob.csv:
id,beta
1,b-one
2,b-twoQuery:
select a.alpha, b.beta left join b on aNR==b.idOutput:
alpha,beta
a-one,
a-two,Expected output:
alpha,beta
a-one,b-one
a-two,b-twoWhat am I missing?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels