MySQL子查询
什么是子查询
子查询是一条循环中嵌套着一条查询,类似于递归。
子查询基本语法
查询学生表中成绩高于85分的学生信息:
1 | select * from student where id = (select stuid from score where score >= 85) |
子查询常用关键字
- in和not in
1 | select * from student where id [not] in(select stuid from score where score >= 85) |
- exists和not exists
1 | select * from studnet where id [not] exists(select stuid from scre where score >= 85) |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 凌亦零网志!