sql数据库嵌套查询.docVIP

  • 29
  • 0
  • 约3.33千字
  • 约 6页
  • 2016-07-24 发布于安徽
  • 举报
sql数据库嵌套查询.doc

实验四:数据库的嵌套查询实验 学号: 姓名: 实验四:数据库的嵌套查询实验 实验目的: 加深对嵌套查询语句的理解。 实验内容: 使用IN、比较符、ANY或ALL和EXISTS操作符进行嵌套查询操作。 实验步骤: 一. 使用带IN谓词的子查询 查询与’刘晨’在同一个系学习的学生的信息: select * from student where sdept in (select sdept from student where sname=刘晨) 比较: select * from student where sdept = (select sdept from student where sname=刘晨) 的异同 比较: select * from student where sdept = (select sdept from student where sname=刘晨) andsname刘晨V 比较: select S1.* from student S1, student S2 where S1.sdept=S2.sdept and S2.sname=刘晨 查询选修了课程名为’信息系统’ 的学生的学号和姓名: SQL Server中: select sno, sname from student

文档评论(0)

1亿VIP精品文档

相关文档