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:
b.csv:
Query:
select a.alpha, b.beta left join b on aNR==b.id
Output:
Expected output:
alpha,beta
a-one,b-one
a-two,b-two
What am I missing?
I'm trying to
JOINtwo tables, where theBtable has additional information for some rows in theA. I can't get the query to work as I expect.a.csv:
alpha a-one a-twob.csv:
Query:
Output:
Expected output:
What am I missing?