Không, bạn không thể chỉ thay thế ON
với USING
. Nhưng bạn có thể viết lại truy vấn để chứa USING
mệnh đề trong phép nối. Xem cú pháp chính xác bên dưới:
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;