inner join 用于将两个表连接做联合查询,where用于对记录的过滤。
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 ……
这两个不相干的呀
where是查询的条件
inner join 是内联查询 需要联合两个表查询数据的时候用的
inner join时也会需要用到where子句的啊