I am working in Oracle APEX. I want to make a report from three different tables (Patient, History, Treatment) through INNER JOIN . Tables are as fallows.
PATIENT (Par_Id(Pk),Pat_Name,Pat_Gender)
HISTORY (His_Id(Pk),Pat_id(Fk),Treated_By)
and
Treatment (
Treat_Id,
His_id(Fk),Pat_id(Fk)
,Treat_Type
,Charges)
How I am going to display all the mentioned columns of the three Tables in
the report.
Thanks.
You should always specify the columns to return, especially as the tables contain identical column names