botang 发表于 2020-9-13 16:57:33

分步骤的3表外连接:查询所有员工的工作城市

selectemployee_id, city , department_name from
( SELECT employee_id, department_name ,d.location_id fromemployees e , departments d
whered.department_id   (+)= e.department_id   )   a ,locations l
where a.location_id = l.location_id (+) ;
SELECT employee_id, city, department_name
FROM   employees e,   departments d, locations l
whered.department_id   (+)= e.department_idand    d.location_id = l.location_id (+);

页: [1]
查看完整版本: 分步骤的3表外连接:查询所有员工的工作城市