标签:style 管理 tps 免费 一个 article loading 包括 lazy
本篇文章没有实际案例,只说明用法,主要说一下in和exists的使用区别。
在开始前,分享给大家我看过觉得讲数据库讲的算是很不错的,也在B站拥有百万播放量的教程。
这个MySQL视频是动力节点的老杜讲解,个人也很喜欢老杜的教学风格,老杜真的是从MySQL基础一点点带我入门,基础也学得很扎实。
这个教程总体来说就就像列文虎克教学,细到极致,妙到毫巅。
内容涵盖了MySQL的相关知识,包括MySQL概述,MySQL应用环境,MySQL系统特性,MySQL初学基础,MySQL管理工具,如何安装MySQL及MySQL新特性等等。
学完这套视频基本可掌握MySQL全套知识了,值得收藏学习,需要的小伙伴点击以下链接??
在线观看:
MySQL基础入门-mysql教程-数据库实战(MySQL基础+MySQL高级+MySQL优化+MySQL34道作业题)_哔哩哔哩 (゜-゜)つロ 干杯~-bilibili
资料下载:
这个时候我们使用in来进行一次查询 bookid存在class表的数据
1 select * from book b where bookid in (select id from class);
然后使用exists来进行一次查询 bookid存在class表的数据
1 select * from book b where exists (select 1 from class where b.bookid=id );
会发现俩次的数据是一致的,所以下来我们来说一下,在那些情况用in 那些情况用exists
1 select * from book b where bookid in (select id from class); 2 它的运行方式是这样的,类似于俩个for循环 3 for select * from class 4 for select * from book where book.id=class.id 5 6 select * from book b where exists (select 1 from class where b.bookid=id ); 7 exists的运行方式如下 8 for select * from book 9 for select * from class where class.id=book.id
以上俩个案例简单来说 :
————————————————
原文链接:https://blog.csdn.net/fangkang7/article/details/105364936
标签:style 管理 tps 免费 一个 article loading 包括 lazy
原文地址:https://www.cnblogs.com/chaichaichai/p/14821862.html