文章详情页
mysql - sql中两个语句的区别
浏览:39日期:2022-06-22 08:06:24
问题描述
select * from a inner join b on a.id = b.aid和select * from a,b where a.id = b.aid效果一样吗?如果一样的话,用哪一个效果更好?为什么?
问题解答
回答1:select * from a inner join b on a.id = b.id 这是内连接select * from a,b where a.id=b.id 这是等值连接
内连接与等值连接效果是相同的,执行效率也是一样的
相关文章:
1. angular.js - angular内容过长展开收起效果2. angular.js - angularjs中的$compile怎么理解?3. 这段代码既不提示错误也看不到结果,请老师明示错在哪里,谢谢!4. android - 请教安卓的一个界面实现,图片请看问题5. python3.x - centos python 安装lxml 报错 阿里云ECS6. nginx - 关于vue项目部署到ngnix后出现的问题7. docker images显示的镜像过多,狗眼被亮瞎了,怎么办?8. python - uwsgi+django的搭建问题9. python - flask_Bootstrap的WTF的调用疑问10. 如何消除css3斜切角引起的毛边问题
排行榜