在oracle pl-sql中,左连接和右连接以如下方式来实现
查看如下语句:
select emp_name, dept_name
form employee, department
where employee.emp_deptid(+) = department.deptid反之:
select emp_name, dept_name
form employee, department
where employee.emp_deptid = department.deptid(+)