实验一 熟悉SQL SERVER的环境
( 验证型实验 2学时)
1.目的要求:
了解SQL Server management studio的使用 2.实验内容:
回答下面每一个问题,写出实验步骤
1) 在 “已注册服务器窗口”中注册sql server数据库服务器
2) 在“对象资源管理器”中创建名字为sc的数据库
Create database sc
3) 在sc数据库中创建一个名字为student的基本表 create table student
(sno char(9) constraint aa primary key, sname char(20) unique, ssex char(2) default '男', sage smallint default 19,
sdept char(20), );在查询窗口中里创建名为S_C的数据库
4) 在查询窗口中使用sql语言创建名字为course的基本表 create table course (cno char(4) primary key, cname char(40), cpno char(4), credit smallint); 3.主要仪器设备及软件: (1)PC
(2)Microsoft SQL Server 2005
实验二 建立表格,并插入若干记录
( 验证型实验 2学时)