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 子查询的主要内容,如果未能解决你的问题,请参考以下文章