mysql 子查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 子查询相关的知识,希望对你有一定的参考价值。

1.标量子查询

select *from myuser where classid=
(
select classid from myclass
where classname=‘2班‘
)

2.列子查询

select *from myuser where classid in
(
select classid from myclass
)

3.行子查询


SELECT * from myuser
where (classid,age)=
(
select max(classid),min(age)
from myuser
)














以上是关于mysql 子查询的主要内容,如果未能解决你的问题,请参考以下文章

那个mysql 子查询和连接查询 一般常用哪个 谁效率高些

MySQL—— 子查询

带你学MySQL系列 | 今天我们说说MySQL“子查询”!

MySQL------ 子查询

MySQL------ 子查询

MySQL随记 - 子查询