小燕子,哈哈哈哈~~~~~~~~~~

相关子查询是指引用了外部查询列的子查询,即子查询会对外部查询的每行进行一次计算。

举个例子

root:test> show create table test1\G
*************************** 1. row ***************************
Table: test1
Create Table: CREATE TABLE `test1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
`course` varchar(20) DEFAULT NULL,
`score` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8 insert into test1(name,course,score)
values
('张三','语文',80),
('李四','语文',90),
('王五','语文',93),
('张三','数学',77),
('李四','数学',68),
('王五','数学',99),
('张三','英语',90),
('李四','英语',50),
('王五','英语',89); root:test> select * from test1;
+----+--------+--------+-------+
| id | name | course | score |
+----+--------+--------+-------+
| 1 | 张三 | 语文 | 80 |
| 2 | 李四 | 语文 | 90 |
| 3 | 王五 | 语文 | 93 |
| 4 | 张三 | 数学 | 77 |
| 5 | 李四 | 数学 | 68 |
| 6 | 王五 | 数学 | 99 |
| 7 | 张三 | 英语 | 90 |
| 8 | 李四 | 英语 | 50 |
| 9 | 王五 | 英语 | 89 |
+----+--------+--------+-------+

使用相关子查询

root:test> select *
-> from test1 a
-> where 2>(select count(*) from test1 where course=a.course and score>a.score)
-> order by a.course,a.score desc;
+----+--------+--------+-------+
| id | name | course | score |
+----+--------+--------+-------+
| 6 | 王五 | 数学 | 99 |
| 4 | 张三 | 数学 | 77 |
| 7 | 张三 | 英语 | 90 |
| 9 | 王五 | 英语 | 89 |
| 3 | 王五 | 语文 | 93 |
| 2 | 李四 | 语文 | 90 |
+----+--------+--------+-------+
rows in set (0.01 sec)

分析下这个sql:

select * from test1 a where 2 > (select count(*) from test1 where course=a.course and score>a.score)

相关子查询的特点就是子查询依赖与外部查询,在这里面其实是 select * from test 已经先执行了一遍了,查出了所有的数据

然后相关子查询针对每一行数据进行select count(*) from test1 where course=a.course and score>a.score

例如:

  第一行是张三,数学77,那么相关子查询做的工作就是找出test表所有课程是数学的行,查询 张三,77|李四,68|王五,99

  然后where条件score>77,查询出王五,99,count=1,这时候外部条件2>1,符合。

  第二行是李四,数学68,那么相关子查询做的工作就是找出test表所有课程是数学的行,查询 张三,77|李四,68|王五,99

  然后where条件score>68,查询出张三,77,王五,99,count=2,这时候外部条件2>2,不符合。

  第三行是王五,数学99,那么相关子查询做的工作就是找出test表所有课程是数学的行,查询 张三,77|李四,68|王五,99

  然后where条件score>99,没有数据,这时候外部条件2>0,符合。

  那么就筛选出了数学最大的2个人,张三和王五。

  

其实这里的子查询就是找出和当前行类型能匹配上的比他大的有多少,没有比他大的他就是最大

那么找top1就是 1>(xxx),topN就是N>(xxxxx)

最新文章

  1. React-Native坑:Invariant Violation:Application 项目名 has not been registered.
  2. C语言 第二章 数据类型、变量和输入函数
  3. mysql,SQL标准,多表查询中内连接,外连接,自然连接等详解之查询结果集的笛卡尔积的演化
  4. Python cumsums和cumprod函数
  5. HTML弹出窗口
  6. 一个通用的Makefile (转)
  7. Ubutn14.04下caffeine工具不显示在工具栏中的问题
  8. 基于NodeJs的网页爬虫的构建(一)
  9. Google v8 - Hello world
  10. mysql启动不了:ERROR 2002 (HY000): Can’t connect to local MySQL server through socket
  11. 使用div+iframe实现弹窗及弹出内容无法显示的解决
  12. Lost Cows(BIT poj2182)
  13. JavaScript原生对象拓展
  14. Winform控件Tag使用规范
  15. centos7之zabbix的监控H3C ER3200G2流量
  16. xlrd & xlwd
  17. nDPI-dev分析
  18. Dubbo简易控制中心安装
  19. windows程序设计 显示一个窗口
  20. 【内核】内核链表使用说明,list.h注释

热门文章

  1. 斗鱼扩展--拦截替换js_辅助抢宝箱(六)
  2. 使用Kubernetes的java-client实现Deployment的部署及更新操作
  3. 【踩坑】socket.io服务器不能访问
  4. VS2017无法进入断点调试且移动到breakpoint上的时候报错“breakpoint will not currently be hit. the source code is different from original version. ”
  5. Django组件:forms组件(简易版)
  6. 前端JS电商放大镜效果
  7. js 数组操作常用方法
  8. ubuntu双屏调整分辨率
  9. PPPOE+FREERADIUS+MYSQL+LINUX
  10. hihocoder 第四十周 三分求极值