Skip to main content
Announcements
Jan 15, Trends 2025! Get expert guidance to thrive post-AI with After AI: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
rmalkus
Contributor II
Contributor II

Join fields from Employees table into the Order table using common field, EmployeeID

Join fields from Employees table into the Order table using common field, EmployeeID

Labels (1)
1 Reply
here2h3lp
Partner - Contributor III
Partner - Contributor III

try using a left join 

 

order :

load 

x, 

y, 

EmployeeID 

from orders;

 

left join (order)

load

EmployeeID, 

b,

from employees ;