失效链接处理 |
数据库MySQL上机实验报告 PDF 下载
本站整理下载:
相关截图:
主要内容:
实验过程:
1.首先点开电脑的“开始”,在搜索中输入“Mysql”,进入命令框,输入mysql的密码“root”,即可开始进行数据库的创建。
2.了解本次实验的主要内容:
创建用于企业管理的员工数据库,数据库名为 yggl,包含员工信息,部门信息及员工薪水信息。数据库 yggl 包含 3 个表:
1) Employees:员工信息表;
2) Departments:部门信息表;
3) Salary:员工薪水情况表。
3.进行数据库yggl的创建。
(1)创建数据库
create database yggl; 创建yggl数据库
use yggl;选中yggl数据库进行表的创建
(2)创建表 departments
create table Departments (
DepartmentID char(3) NOT null,
DepartmentName char(20) not null,
Note text(16) ,
primary key (DepartmentID)
)engine=innodb;
(3)创建表 employees
create table employees (
employeeid char(6) not null,
name char(10) not null,
education char(4),
birthday date not null,
sex char(2) not null,
workyear tinyint(1) ,
address varchar(20) ,
phonenumber char(12),
departmentid char(3) not null,
primary key (employeeid)
)engine=innodb;
(4)创建表 salary
create table salary (
employeeid char(6), income float(8),
outcome float(8),
primary key (employeeid)
)engine=innodb;
|