博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sqlserver in 和 exist 子查询
阅读量:5053 次
发布时间:2019-06-12

本文共 712 字,大约阅读时间需要 2 分钟。

1 in 子查询

1 use StudentManageDB2 go3 --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 StudentManageDB2 go3 select StudentId,StudentName from Students4 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 else12       print '本次考试内容较难'

 

转载于:https://www.cnblogs.com/Spinoza/p/10048283.html

你可能感兴趣的文章
Codeforces 450 C. Jzzhu and Chocolate
查看>>
[Unity3D]Unity3D游戏开发MatchTarget的作用攀登效果实现
查看>>
ACdream 1115 Salmon And Cat (找规律&amp;&amp;打表)
查看>>
JSON、JSONP、Ajax的区别
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
css3动画——基本准则
查看>>
javaweb常识
查看>>
Java注解
查看>>
web自己主动保存表单
查看>>
一个小的日常实践——高速Fibonacci数算法
查看>>
机器学些技法(9)--Decision Tree
查看>>
drf权限组件
查看>>
输入月份和日期,得出是今年第几天
查看>>
Qt中子窗口全屏显示与退出全屏
查看>>
使用brew安装软件
查看>>
[BZOJ1083] [SCOI2005] 繁忙的都市 (kruskal)
查看>>
Centos6.4安装JDK
查看>>
201521123069 《Java程序设计》 第4周学习总结
查看>>
线性表的顺序存储——线性表的本质和操作
查看>>