标签:load art 一个 一点 div 播放量 bilibili tps 创建索引
在开始前,分享给大家我看过觉得讲数据库讲的算是很不错的,也在B站拥有百万播放量的教程。
这个MySQL视频是动力节点的老杜讲解,个人也很喜欢老杜的教学风格,老杜真的是从MySQL基础一点点带我入门,基础也学得很扎实。
这个教程总体来说就就像列文虎克教学,细到极致,妙到毫巅。
内容涵盖了MySQL的相关知识,包括MySQL概述,MySQL应用环境,MySQL系统特性,MySQL初学基础,MySQL管理工具,如何安装MySQL及MySQL新特性等等。
学完这套视频基本可掌握MySQL全套知识了,值得收藏学习,需要的小伙伴点击以下链接??
在线观看:
MySQL基础入门-mysql教程-数据库实战(MySQL基础+MySQL高级+MySQL优化+MySQL34道作业题)_哔哩哔哩 (゜-゜)つロ 干杯~-bilibili
资料下载:
1 CREATE TABLE IF NOT EXISTS `article` ( 2 `id` INT(10) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, 3 `author_id` INT(10) UNSIGNED NOT NULL, 4 `category_id` INT(10) UNSIGNED NOT NULL, 5 `views` INT(10) UNSIGNED NOT NULL, 6 `comments` INT(10) UNSIGNED NOT NULL, 7 `title` VARBINARY(255) NOT NULL, 8 `content` TEXT NOT NULL 9 );
1 INSERT INTO `article` ( `author_id`, `category_id`,`views`,`comments`, `title` ,`content`) VALUES 2 (1, 1,1,1,‘1‘,‘1‘), 3 (2,2,2,2, ‘2‘, ‘2‘), 4 (1, 1,3,3,‘3‘, ‘3‘);
查询category_ id 为1且comments大于1的情况下,views最多的文章ID
1 select id,author_id from article where category_id=1 and comments>1 order by views;
可以对比上边表数据对照看
可以看到进行了全表扫描,并且使用了文件排序 这种SQL是必须进行优化的
1 # 创建索引 2 create index ind_article_ccv on article(category_id,comments,views); 3 4 # 查看表的所有索引 5 show index from article
1 explain select id,author_id from article where category_id=1 and comments>1 order by views;
发现全表扫描我们解决了,但是文件排序还没有解决。那么这个方案也是不可以的
1 # 删除索引 2 drop index ind_article_ccv on article 3 4 # 查看表的所有索引 5 show index from article
那么我们在来给caterory_id和view建立一个索引
1 # 创建索引 2 create index ind_article_cv on article(category_id,views); 3 4 # 分析语句 5 explain select id,author_id from article where category_id=1 and comments>1 order by views;
————————————————
原文链接:https://blog.csdn.net/fangkang7/article/details/105282077
标签:load art 一个 一点 div 播放量 bilibili tps 创建索引
原文地址:https://www.cnblogs.com/chaichaichai/p/14813446.html