Are these 2 queries the same?
Query #1
select
e.last_name, e.first_name, d.department_name, l.city
from
employees e
inner
join departments d on e.department_id = d.department_id
inner join
locations l on d.location_id = l.location_id;
Query #2
select
e.last_name, e.first_name, d.department_name, l.city
from
employees e, departments d, locations l
where
e.department_id = d.department_id
AND d.location_id = l.location_id;