Print the first names, surnames and salaries of employees who receive less than the minimum salary in their specialty + 1000.
Between
SELECT first_name, last_name, salary
FROM employees e
JOIN jobs j ON (e.job_id = j.job_id)
WHERE salary < min_salary + 1000;
And
SELECT first_name, last_name, salary
FROM employees e
JOIN jobs j ON (e.job_id = j.job_id AND salary < min_salary + 1000);
I get the same output, but is there any difference in logic other than syntax?