Unverified Commit 2f013d1b authored by 骆昊's avatar 骆昊 Committed by GitHub

Merge pull request #119 from leemamas/master

Update 关系型数据库MySQL.md
parents 9e360492 59431d31
...@@ -401,7 +401,7 @@ ...@@ -401,7 +401,7 @@
); );
-- 查询选了两门以上的课程的学生姓名(子查询/分组条件/集合运算) -- 查询选了两门以上的课程的学生姓名(子查询/分组条件/集合运算)
select stuname from tb_student where stuid=( select stuname from tb_student where stuid=any(
select stuid from tb_score group by stuid having count(stuid)>2 select stuid from tb_score group by stuid having count(stuid)>2
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment