I've got two tables, one called "MWPATIENTS" and one called "MWTRN". There is a common field called "Chart Number" that is in both tables.
The MWPATIENTS table has all the patient information such as full name, address, etc.
I need to run a query on the MWCASE table that selects certain records and then get the patients full name from the MWPATIENT table.
select "Chart Number", "Procedure Code" from mwtrn WHERE "Procedure Code" = 'G0121' or "Procedure Code" = 'G0105'
It shows the chart number OK, but now I need to get the patients name from the MWPATIENT table.
Any suggestions please?
The MWPATIENTS table has all the patient information such as full name, address, etc.
I need to run a query on the MWCASE table that selects certain records and then get the patients full name from the MWPATIENT table.
select "Chart Number", "Procedure Code" from mwtrn WHERE "Procedure Code" = 'G0121' or "Procedure Code" = 'G0105'
It shows the chart number OK, but now I need to get the patients name from the MWPATIENT table.
Any suggestions please?