微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sqlserver in 和 exist 子查询

1 in 子查询

1 use StudentManageDB
2 go
3 --select StudentName from Students 
4 --where StudentId=(select StudentId from scoreList where sqlServerDB>80)
5 select StudentName from Students 
6 where StudentId in (select StudentId from scoreList where sqlServerDB>80)
1 use StudentManageDB
2 go
3 select StudentId,StudentName from Students
4 where StudentId not in(select StudentId from scoreList)

2.exist 子查询

 1 use StudentManageDB
 2 go
 3 if exists(select * from scoreList where CSharp<60)
 4    print 本次考试内容较难
 5 else
 6    print 本次考试内容适中
 7 
 8 --NOT EXISTS的使用
 9 if not exists(select * from scoreList where CSharp<60)
10       print 本次考试内容适中
11 else
12       print 本次考试内容较难

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐