I have two tables X and Y. X has empid and jobid, they both can be either same or different. Table Y has TEST_EMPID and CompanyName. I am trying to join table X to table Y. I need to select CompanyName as Emp_CompanyName when x.Empid = Y.TEST_EMPID and companyName as Job_CompanyName when X.Jobid = Y.TEST_EMPID.
Any help.
Result set should look like this.
EMPID JobID Emp_CompanyName Job_CompanyName
abc abc Test Test
uv hi Test inc. Test inc.
Any help.
Result set should look like this.
EMPID JobID Emp_CompanyName Job_CompanyName
abc abc Test Test
uv hi Test inc. Test inc.