数据库期末考试题 求答案 急!

数据库期末考试题 求答案 急!,第1张

--1

create database 学生选课系统

on primary

(name = 学生选课系统_data,

filename='d:\aa\学生选课系统mdf',

size=8,

maxsize=100,

filegrowth=20%)

log on

(name =学生选课系统_log,

filename = 'e:\ee\学生选课系统ldf')

--2

create table 学生

(学号 char(10) primary key,

姓名 char(20),

性别 char(2) check (性别 in('男','女')),

年龄 int default 20,

所在系 char(20))

--3

select 学号,年龄

from 学生

where 所在系='物理系'

--4

select 学号,成绩

where 课程号='2'

order by 成绩 asc,学号 desc

--5

select 学生学号 学号,姓名,选修的课程名,成绩

from 学生,课程,选课

where 学生学号=选课学号 and 课程课程号=选课课程号

--6

insert into 学生(学号,姓名,所在系)

values('96002','张三','英语系')

--7

update 学生 set 年龄=年龄+3

--8

delete from 学生

where 所在系='化学系'

--9

create view 英语系学生

as

select 学号,性别,年龄

from 学生

where 所在系='英语系'

--10

create unique index IX_课程号 on 课程(课程号)

--11

create trigger trig1 on 学生

for delete

as

declare @SID char(10)

select @SID=学号 from deleted

begin

delete from 选课 where 学号=@SID

end

1

select aS#, avg(bScore) Student a,SC b where aS#=bS# group by aS#

having avg(bScore) > 60

2

select aS#, avg(bScore) Student a,SC b where aS#=bS# and S# IN

(

select S# from SC where Score <60 group by S# having count() > 2

)

group by aS#

3

select S#,Sname from where S# not in

(select aS# from Student a,Course b,SC c,Teacher d

where

aS#=cS# and

bC#=cC# and

bT#=dT# and

dTname='叶平')

C#连接Access程序代码:

usingSystemData;

usingSystemDataOleDb;

stringstrConnection="Provider=MicrosoftJetOleDb40;";

strConnection+=@"DataSource=C:\BegASPNET\Northwindmdb";

OleDbConnectionobjConnection=newOleDbConnection(strConnection);

objConnectionOpen();

objConnectionClose();

解释:

C#连接Access数据库需要导入额外的命名空间,所以有了最前面的两条using命令,这是必不可少的!

strConnection这个变量里存放的是连接数据库所需要的连接字符串,他指定了要使用的数据提供者和要使用的数据源。

“Provider=MicrosoftJetOleDb40;”是指数据提供者,这里使用的是Microsoft

Jet引擎,也就是Access中的数据引擎,aspnet就是靠这个和Access的数据库连接的。

“Data

Source=C:\BegASPNET\Northwindmdb”是指明数据源的位置,他的标准形式是“Data Source=MyDrive:MyPath\MyFileMDB”。

以上就是关于数据库期末考试题 求答案 急!全部的内容,包括:数据库期末考试题 求答案 急!、有学生头选课系统,数据库中有四个表,分别为: Student(S#, Sname, Sage, Ssex)、c#如何与access数据库连接,想写一个学生选课管理系统。等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9706436.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存