I need to join to tables of data. I have one table of chemical sample results and another table of chemicals. I need to join the tables in such a way that for all the chemical sample results I get the chemical, but I also want all the other chemical even if there is no result for that chemical.
SAMPLE_RESULTS
-----------------------
chemical_id
sample_result
CHEMICALS
-----------------------
chemical_id
chemical_name
I want to see...
---------------------------------
CARBON 2
CADMIUM 3
IRON
OXYGEN
Please help,
THANK YOU
SAMPLE_RESULTS
-----------------------
chemical_id
sample_result
CHEMICALS
-----------------------
chemical_id
chemical_name
I want to see...
---------------------------------
CARBON 2
CADMIUM 3
IRON
OXYGEN
Please help,
THANK YOU