Answers for "non equal join in oracle"

SQL
0

non equal join in oracle

SELECT a.department_id, a.department_name, b.city
FROM departments a, locations b
WHERE b.location_id BETWEEN 1800 AND 2500
AND a.department_id < 30;
Posted by: Guest on October-13-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language