why did they in the below query, in the inner join section wrote USING not on?
SELECT
COALESCE(department_name, '-') department,
COALESCE(job_title,'-') job,
COUNT(*) ,
SUM(salary) salary
FROM
employees
INNER JOIN departments USING (department_id)
INNER JOIN jobs USING (job_id)
GROUP BY
CUBE(department_name,job_title)
ORDER BY
department_name ASC NULLS LAST;