Skip to content

Commit

Permalink
Update 关系型数据库MySQL.md
Browse files Browse the repository at this point in the history
  • Loading branch information
leemamas authored May 16, 2019
1 parent 0d2f070 commit 59431d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Day36-40/关系型数据库MySQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -696,4 +696,4 @@ insert into tb_emp values
if __name__ == '__main__':
main()
```
```

0 comments on commit 59431d3

Please sign in to comment.