Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Cláusula USING no oracle 11g


Não, você não pode simplesmente substituir ON com USING . Mas você pode reescrever a consulta para conter USING cláusula em joins. Veja a sintaxe correta abaixo:
select e.employee_id,
       e.last_name,
       department_id, --Note there is no table prefix
       d.department_name,
       l.city,
       location_id --Note there is no table prefix
  from employees e
  join departments d
 using (department_id)
  join locations l
 using (location_id)
 where e.manager_id = 149;