Oracle中Inner join和Where的区别

2024-11-06 03:45:49
推荐回答(3个)
回答1:

inner join 用于将两个表连接做联合查询,where用于对记录的过滤。

回答2:

inner join 是内连接,
where 是查询条件,
select * from a,b where a.id=b.id and ……
等效于
select * from a inner join b on a.id=b.id where ……

回答3:

这两个不相干的呀
where是查询的条件
inner join 是内联查询 需要联合两个表查询数据的时候用的
inner join时也会需要用到where子句的啊