SQL JOIN: is there a difference between USING, ON or WHERE?

前端 未结 6 1833
渐次进展
渐次进展 2020-11-22 00:11

I was wondering if there is any difference in the way SQL performs on these join statements:

SELECT * FROM a,b WHERE a.ID = b.ID

SELECT * FROM a JOIN b ON a         


        
6条回答
提交回复
热议问题