You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
529 B

create database PMS; #创建数据库
use PMS;
SET SQL_SAFE_UPDATES = 0;
#创建员工信息表(Employees)
create table Employees(
EmployeeID char(8) not null primary key, #员工ID
Name varchar(15) not null, #员工姓名
Gender varchar(2) not null, #员工性别
DataOfBirth date,#出生日期
Cotactinfo char(11) not null,#联系方式
HireDate date not null,#入职日期
DepartmentID char(4) not null,#部门ID
PositionID char(4) not null #职位ID
)engine = InnoDB default charset=utf8;