Merge pull request #119 from leemamas/master

Update 关系型数据库MySQL.md
pull/133/head
骆昊 2019-05-18 23:14:47 +08:00 committed by GitHub
commit 2f013d1bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
) )
@ -696,4 +696,4 @@ insert into tb_emp values
if __name__ == '__main__': if __name__ == '__main__':
main() main()
``` ```