全文预览

Server2005考试试题(百度文库专)用

上传者:upcfxx |  格式:doc  |  页数:8 |  大小:119KB

文档介绍
department values ( '02' ,' 计算机') insert into department values ( '03' ,' 数学') insert into department values ( '04' ,' 化学') 4 完成以下的查询功能(1 )通过对学生信息表的查询,查询出所有学生的学号,姓名和性别 select 学号, 姓名, 性别 from student (2 )通过对学生信息表的查询,查询来自福建的学生的记录 select * from student where 生源地=' 福建' (3 )在查询语句中,查询出学生姓名并计算出学生的年龄大小 select 姓名, datediff ( yy , 出生日期, getdate ()) from student (4 )用模糊查询出姓钱的女生记录 select * from student where 姓名 like '钱%' (5 )在查询语句中使用聚合函数计算出所有学生总数起别名为学生人数 select count (*) as ' 学生人数' from student (6 )查询所有班级的信息,并用班级号进行降序排序 select * from class order by 班号 desc (7 )更新学号为 8103 的这位学生的姓名为张玲 update student set 姓名=' 张玲' where 学号= '8103' (8 )查找出学号在 8101 到 8103 的学生信息 select * from student where 学号 between '8101' and '8103' (9 )删除姓名为李飞的学生记录 delete from student where 姓名=' 李飞' ( 10 )删除数据表 STUDENT drop table student

收藏

分享

举报
下载此文档