如:Select * from a, b where a.id=b.id  和  select * from a inner join b on a.id=b.id  ,这样查询出来的结果是一样的,但在性能上是否会有区别?是不是在这种情况下一般都是推荐要用inner join的啊? 谢谢。