I created a database in Oracle iSQL, but now I have to make it work in Access. I was able to move everything over fine except for two queries. I know Access doesn't allow NATURAL JOIN or (+) but I'm not sure how to rewrite the statements to make them work.
First One:
select EMP_SSN, EMP_FNAME &" "& EMP_LNAME as "Employee Name",ins_dep_fname,ins_dep_dob
from employee e, insured_dependent i
WHERE e.EMP_ID = i.EMP_ID(+)
ORDER by EMP_FNAME;
Second One:
select EMP_FNAME &" "& EMP_LNAME as "Employee Name", EMP_SSN, EMP_ID_MANAGER
from employee NATURAL JOIN department;
Any help would be greatly appreciated!![]()