索引
5块
努力将梦想码进现实!
展开
-
从二分查找到B+树索引原理
从二分查找到B+树索引原理 从二分查找到B+树索引原理 如果现在有一张表t,id为主键,有以下SQL语句: --设在a列上创建了索引 select a from t where a >= 80; select id, a from t where a >= 80; select * from t where a >= 80; --设创建了(a,b,c)联合索引 select原创 2017-11-01 10:42:26 · 886 阅读 · 0 评论 -
从二分查找到B+树索引原理
如果现在有一张表t,id为主键,有以下SQL语句: --设在a列上创建了索引 select a from t where a >= 80; select id, a from t where a >= 80; select * from t where a >= 80;--设创建了(a,b,c)联合索引 select * from t where a = 4 and b = 5 and c > 6;原创 2017-12-08 20:03:16 · 1383 阅读 · 1 评论