SQL SERVER实验-- 数据检索
实验3 数据检索一、实验目的
(1)理解T-SQL语言的使用。<o:p></o:p>
(2)熟练掌握数据查询语句。<o:p></o:p>
SELECT {*|<表达式>,…,<表达式>}<o:p></o:p>
FROM <表名>[, <表名>…]<o:p></o:p>
<o:p></o:p>
]<o:p></o:p>
[, <列名> ASC|DESC]…]<o:p></o:p>
<o:p></o:p>
<o:p> </o:p>
二、实验内容
1、 b USE CAP
select aid from AGENTS where =(select max( )from AGENTS
Select cid,aid from customers c, agents a Where cid not in (select cid from orders x
Where x.cid = c.cid and x.aid = a.aid) And
aid not in (select aid from orders v Where v.aid = a.aid and v.cid = c.cid)
a select cid,max(dollars) as MAXSPEND from orders group by cid
b select avg(MAXSPEND) average,cid from (select cid,max(dollars) as MAXSPEND from orders group by cid)as S group by cid
b Select avg(temp.maxspend)avgspend,temp.cid
from (select cid,max(dollars) as maxspend from orders
Group by cid) as temp group by temp.cid
f select pid from products p
where not exists(select cid from customers c where city='Duluth'
and not exists (select * from orders o where o.cid=c.cid and o.pid=p.pid))
j update products
set price=price*1.1 where city='Duluth' or city='Dallas'
l select aid, from agents a where not exists(select * from customers c
where city='Duluth' and not exists
(select * from orders o where o.cid=c.cid and o.aid=a.aid)) order by DESC<o:p></o:p>
<选做>、、<o:p></o:p>
<o:p> </o:p>
2、在“学生管理数据库”中建立四张表,分别如下:<o:p></o:p>
学生表:(主键:学号)<o:p></o:p>
学号<o:p></o:p>
姓名<o:p></o:p>
性别<o:p></o:p>
年龄<o:p></o:p>
所在院系<o:p></o:p>
班级<o:p></o:p>
入学日期<o:p></o:p>
20009001<o:p></o:p>
葛文卿<o:p></o:p>
女<o:p></o:p>
22<o:p></o:p>
国际贸易<o:p></o:p>
国贸2班<o:p></o:p>
2000-8-29<o:p></o:p>
20014019<o:p></o:p>
郑秀丽<o:p></o:p>
女<o:p></o:p>
21<o:p></o:p>
会计学<o:p></o:p>
会计1班<o:p></o:p>
2001-9-2<o:p></o:p>
20023001<o:p></o:p>
刘成铠<o:p></o:p>
男<o:p></o:p>
18<o:p></o:p>
计算机<o:p></o:p>
软件2班<o:p></o:p>
2002-8-27<o:p></o:p>
20026002<o:p></o:p>
李涛<o:p></o:p>
女<o:p></o:p>
19<o:p></o:p>
电子学<o:p></o:p>
电子1班<o:p></o:p>
2002-8-27<o:p></o:p>
20023002<o:p></o:p>
沈香娜<o:p></o:p>
女<o:p></o:p>
18<o:p></o:p>
计算机<o:p></o:p>
软件2班<o:p></o:p>
2002-8-27<o:p></o:p>
20026003<o:p></o:p>
李涛<o:p></o:p>
男<o:p></o:p>
19<o:p></o:p>
计算机<o:p></o:p>
软件1班<o:p></o:p>
2002-8-27<o:p></o:p>
20023003<o:p></o:p>
肖一竹<o:p></o:p>
女<o:p></o:p>
19<o:p></o:p>
计算机<o:p></o:p>
软件2班<o:p></o:p>
2002-8-27<o:p></o:p>
<o:p> </o:p>
课程表:(主键:课程号)<o:p></o:p>
课程号<o:p></o:p>
课程名<o:p></o:p>
先修课<o:p></o:p>
学分<o:p></o:p>
C801<o:p></o:p>
高等数学<o:p></o:p>
<o:p> </o:p>
4<o:p></o:p>
C802<o:p></o:p>
C++语言<o:p></o:p>
C807<o:p></o:p>
3<o:p></o:p>
C803<o:p></o:p>
页:
[1]