Skip to content

Commit 59431d3

Browse files
authored
Update 关系型数据库MySQL.md
1 parent 0d2f070 commit 59431d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Day36-40/关系型数据库MySQL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@
401401
);
402402
403403
-- 查询选了两门以上的课程的学生姓名(子查询/分组条件/集合运算)
404-
select stuname from tb_student where stuid=(
404+
select stuname from tb_student where stuid=any(
405405
select stuid from tb_score group by stuid having count(stuid)>2
406406
)
407407
@@ -696,4 +696,4 @@ insert into tb_emp values
696696
697697
if __name__ == '__main__':
698698
main()
699-
```
699+
```

0 commit comments

Comments
 (0)