全国高校大学生计算机CCT考试

全国高校大学生计算机CCT考试,第1张

关于全国高等学校计算机水平考试(CCT)报考及申请证书的通知

各班级:

2016年下半年全国高等学校计算机水平考试(CCT)报考及申请证书现开始进行,此通知分为报考和申请证书两部分。

自2012级开始,我校期末考试《大学计算基础》及《数据库技术与应用》采用了广东省高等学校考试中心的系统进行期末上机考试,凡卷面成绩60分(包括60分)以上的同学都可以直接缴费申请相关科目的计算机水平证书。但有部分同学,卷面成绩在60分以下,加上平时成绩,期末综合成绩又及格了的同学,无法直接申请证书。此外,全国高等学校计算机水平考试除了这两个科目,还有其他科目的证书,需要其他科目证书的同学,也无法直接申请。这两种情况的同学可以通过报名考试,考试通过者就可以颁发证书。

一、报考

1、报考对象:期末卷面成绩60分以下或者需要其他科目证书的在校学生

2、报考方式:网上报名

1,建立一个数据库,在数据库中建立如下三个表

create table 雇员

(雇员号 char(10) primary key,

姓名 char(20),

年龄 int,

地址 char(20),

薪水 money)

create table 部门

(部门号 char(10) primary key,

部门名 char(20) not null,

部门经理 char(20))

create table 工作

(雇员号 char(10),

部门号 char(10),

工作年限 int,

primary key (雇员号,部门号),

foreign key(雇员号) references 雇员(雇员号),

foreign key(部门号) references 部门(部门号))

2,向三个表中插入数据

insert

into employee

values(e01,tom,35,海淀,8000),

其余数据插入方法相同

insert apartment

value(d01,人事,e04)

其余同上

insert (e01,d02,6)

其余同上

3,用SQL语句完成以下 *** 作

(1)select employee_num,ename

from employee

where employee_num in

(select employee_num

from work

group by employee_num

having count()=3

);

(2)select sum(salary)

form employee ,apartment,work

where employeeemployee_num=workemployee_num and apartmentapartment_num=workapartment_num

group by apartment_num

order by sum(salary) desc;

(3)

borrower:

create table borrower(

借书证号 char[5] primary key,

姓名 char[20] not null,

系名 char[10],

班级 char[10])

create table loans(

借书证号 char[5],

图书登记号 char[6],

结束日期 DATE,

primary key(借书证号,图书登记号),

foreign key(借书证号) reference borrower(借书证号),

foreign key(图书登记号 reference books(图书登记号))

create table books(

索书号 char[10],

书名 char[20],

图书登记号 char[6] primary key,

出版社 char[20],

价格 smallint))

(1)

select borrower借书证号,姓名,系名,temptotal as 借书数量

from borrower,(select 借书证号,count(图书登记号) as total

from loans group by 借书证号

where tatal>5 as temp(借书证号,total))

(2)

select borrower姓名,系名,书名,结束日期

from borrower,loans,books

where borrower借书证号=loans借书证号

and books图书登记号=loans图书登记号

and 书名 in(selcet 书名

from borrower,loans,books

where borrower借书证号=loans借书证号

and books图书登记号=loans图书登记号

and 姓名='赵垒')

(3)

create view SB

as

select borrower借书证号,姓名,班级,books图书登记号,书名,出版社

,借书日期

from borrower,book,loans

where borrower借书证号=loans借书证号

and books图书登记号=loans图书登记号

and 系名='信息系'

1

create table student(

sno char[10] primary key,

sname char[20] not null,

ssex char[2],

sage smallint check( sage between 16 and 30),

sdept char[4])

create table course(

cno char[10] primary key,

cname char[20] not null,

cteacher char[20])

create table sc(

sno char[10],

cno char[10],

grade smallint check(grade is null or grade between 0 and

100),

primary key(sno,cno)

foreign key sno reference student(sno),

foreign key cno reference course(cno))

2

insert into student values('102','李四','男',16,'数学')

下同

insert into course values('203',' *** 作系统','程羽')

下同

insert into sc values('101','203',82)

下同

3

(1) select cname,grade

from sc,student,course

where studentsno=scsno and coursecno=sccno

and sname='张三'

(2) select sname from student

where sno in(select sno from sc x

where not exists(

select from sc y

where xsno=ysno

and ygrade<60))

(3) select cname,sname,grade

from student,course sc,(select cno,max(grade) from sc group by cno

as temp(cno,max))

where studentsno=scsno and coursecno=sccno

and grade=max and coursecno=tempcno

4

delete from sc where grade<60

5

update sc

set grade=(select avg(grade) from sc where cno='203')

where sno=105

仅供参考

中文名:三级数据库技术

外文名:Level 3 database technology

考试方式:上机考试,120分钟,满分100分

基本要求:能使用SQL语言实现数据库 *** 作等

本科程的内容分两个部分:数据库技术和软件Access2003的使用。主要讲授方式为通过案例介绍数据库的基本概念和 *** 作。

1、数据库技术的基本原理

介绍数据库的基本理论,主要包括信息、数据库、数据库管理系统、数据模型、数据库系统结构、关系数据库、SQL语言、关系数据库设计理论、数据库保护等基本的理论知识。

2、Access2003

介绍Access数据库系统的基本概念,如表、字段、索引、记录等,构建数据库模型,创建数据库;其次,介绍数据库的基本 *** 作:包括创建数据库、数据表、索引、关联,数据库的管理与维护等;第三,讲解查询、窗体和报表等可视化对象的使用与编辑方法,利用它们实现对数据表中的数据进行查询的功能,并结合需要创建用户界面,生成需要的报表文件等 *** 作;第四,介绍Access的宏、模块和VBA等基本概念和使用方法,并利用它们来编制用户所需的应用程序;在Access中制作数据访问页;最后结合实例利用Access提供的相关功能,设计并创建一个小型数据库管理应用系统,提供交互界面,实现数据的查询等功能。

使用教材 陈建萍、钱宇华编写的《计算机基础和Office教程》,南开大学出版社。

参考书目:周晓玉等编写的《Access使用教程》,人民邮电出版社

《全国计算机等级考试二级教程—Access数据库程序设计》,高等教育出版社考核方式 期末考试为上机考试,其中基本知识20-30分, *** 作题70-80分。期末总评时,平时成绩30% ,期末考试成绩70%。

以上就是关于全国高校大学生计算机CCT考试全部的内容,包括:全国高校大学生计算机CCT考试、正在上机考试 跪求 数据库上机实验代码、跪解以下2道数据库系统原理上机试题等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

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

原文地址: https://outofmemory.cn/sjk/9314662.html

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

发表评论

登录后才能评论

评论列表(0条)

保存