赞
踩
今天发现有这种写法
select * from table1 t1,table2 t2 where t1.id=t2.id;
这种写法等价与inner join
select * from table1 t1 inner join table2 t2 on t1.id=t2.id where 条件;
终于知道SQL中多表查询中逗号是隐式的内连接了,inner join关键字是显示的内连接。。。_酷你吉娃的夏天的博客-CSDN博客_sql隐式内连接
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。