So I have a similar question....
When running a select statement select field1, field2, field3, field4 from table1
The values for field2 and field3 are a "code"...
The value of the code in field2 is in table2, and the value for the code in field3 is in table3
Example: Field2=16 , In the employee table, There is a column employee_id. Where employee_id=16, first_name_x= Jane , Last_name_x= Doe
So instead of having the value for field2=16, Id rather the output be Doe, Jane
Another Example: Field3=AA ; In the table code_category, There is a column code_c. Where code_c=AA , description_x= Available for Adoption
So instead of having the value for field3=AA, Id rather the output be Available for Adoption
So, I would like to run a select statement that pulls up the values for field1-4... but substitutes the codes in field2&3 for the description....
I hope you follow, sorry if I made this sound more confusing than it needed to be.