0

以示例 HR 模式为例。查找没有 LOCATION_ID = 1700 的员工的查询是什么
我已经尝试使用内部联接进行查询,但我不知道如何走得更远。
结果查询应该是这样的

select * from employees
inner join  departments on
    employees.DEPARTMENT_ID=departments.DEPARTMENT_ID
-->  and where departments.location_id != '1700'

因为我以 HR 模式为例。我想补充一点,在我原来的情况下 location_id 是一个 varchar2。

4

1 回答 1

5

我假设你想在 Sql 中查询

select * from employees
    inner join  departments on
      employees.DEPARTMENT_ID=departments.DEPARTMENT_ID
where departments.location_id <> 1700
于 2013-02-12T20:14:08.067 回答