select from a,b where a.id b.id 是什么连接


这是SQL 89中内链接的写法抄。

内链接:
SQL89:Select * From a,b where a.id=b.id
SQL92:select * from a inner join b on a.id=b.id

交叉连接
SQL89:Select * From a,b
SQL92:select * from a cross join b

外连接在sql 92标准中引百入的,只有一种写法(以左外连接为例)
select * from a left join b on a.id=b.id


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM