いいえ、ON
を単に置き換えることはできません USING
を使用 。ただし、USING
を含むようにクエリを書き直すことができます 結合の句。以下の正しい構文を参照してください:
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;