摘要: 回表 前提知识:InnoDB、B+树、索引、聚集索引(唯一索引)、非聚集索引(普通索引) 定义 顾名思义,再次回到表中。在利用普通索引查询时会再次扫表查询。 原因 索引的底层存储结构不同导致的 聚集索引 B+树的叶子节点中直接存储唯一索引和当前行所有数据;利用唯一索引查询时,只需扫表一次。 非聚集索 阅读全文
posted @ 2022-08-02 22:45 fengqiyunyouyong 阅读(750) 评论(0) 推荐(0)
摘要: git 一、简介 官网:https://git-scm.com/ github:https://github.com/git/git 二. 安装 windows linux apt 安装 apt install git apt remove git git --version yum 安装 yum 阅读全文
posted @ 2022-08-02 22:15 fengqiyunyouyong 阅读(86) 评论(0) 推荐(0)