@rg070836rg
2015-10-22T10:17:03.000000Z
字数 2110
阅读 1723
数据库
实验七:T-SQL(5)
1 实验目的
1. 熟悉数据库的交互式SQL工具。
2. 熟悉通过SQL对数据库进行操作。
3. 完成作业的上机练习。
2 实验平台
利用SQLServer及其交互式工具SSMS来熟悉T-SQL。
3 实验内容及要求
基于student、course、sc表,用SQL语句实现如下要求,填写实验报告,记录所有的实验用例。
1. 查询所有被选的课程号及课程名,并将查询结果的列名用中文表示。
2. 查询年龄在19到21岁之间的同学的学号、姓名、性别,并按学号降序显示。。
3. 查询既不是英语系、数学系,也不是计算机科学系的学生的学号、姓名和性别。
4. 查询所有姓王的学生的学号、姓名和性别,并按学号升序显示。
5. 查询所有不姓刘的学生姓名。
6. 查询名字中第2个字为"敏"字的学生的学号和姓名。
7. 查所有有成绩的学生学号和课程号。
use Students;
drop table Student;
drop table Course;
drop table SC;
create table Student
(
sno char(8) not null primary key,
Sname char(15) null,
Ssex char(4) null,
Sage int null,
Sdept char(10) null
)
create table Course
(
Cno char(6) not null,
Cname char(10),
Cpno int null,
Ccredit int null,
primary key(cno),
)
go
create table SC
(
Sno char(8) not null primary key,
Cno int null,
Grade int null
)
insert into Student values('19130201','丁鹏','男',20,'Software')
insert into Student values('19130202','王韵婷','女',20,'Software')
insert into Student values('19130203','尹嘉琪','男',18,'Software')
insert into Student values('19130204','卢冬冬','男',20,'Software')
insert into Student values('19130205','史逸凡','男',19,'Software')
insert into Course values('1','数据库',5,4)
insert into Course values('2','数学',null,2)
insert into Course values('3','信息系统',1,4)
insert into Course values('4','操作系统',6,3)
insert into Course values('5','数据结构',7,5)
insert into Course values('6','数据处理',null,2)
insert into Course values('7','PASCAL语言',6,4)
insert into SC values('19130201',1,99)
insert into SC values('19130202',5,95)
insert into SC values('19130203',3,100)
insert into SC values('19130205',1,93)
insert into SC values('19130204',5,92)
select * from Course;
select * from SC;
select * from Student;
建表示例图
select Cno as '课程编号',Cname as '课程名称' from Course where Cno in
(select distinct Cno from SC);
select sno,sname,ssex from Student where Sage>=19 and Sage<=21 order by sno desc
select sno,sname,ssex from Student where Sdept!='English' and
Sdept!='Math' and Sdept!='Computer'
select sno,sname,ssex from Student where sname like '王%' order by sno
select sname from Student where sname not like '刘%'
select sno,sname from Student where sname like '_敏%'
select sno,cno from SC where Grade is not null