नहीं, आप केवल 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;