Stuck! SQL Join
666354Jun 10 2010 — edited Jun 10 2010Hi,
I have the following tables, the employee table, and a lookup code table
EmpID Status Maritial
==============
1 FT M
2 PT S
Code description
===========
FT Full Time
PT Part Time
M Married
S Single
I am composing a VIEW that needs to include the following info.
EmpId Status Status_Desc Martial Marital_Desc
==================================
1 FT Full Time M Married
2 PT Part Time S Single
I am stuck on how to join those two tables to get the descriptions.
Oracle10gR2.
Thanks.