Employee 表 (AdventureWorks)

包含雇员信息(例如国家/地区标识号、职位以及休假和病假小时数)。雇员姓名储存在 Contact 表中。

Employee 表定义

Employee 表包含在 HumanResources 架构中。

数据类型 为空性 说明

EmployeeID

int

非空

雇员行的主键。

NationalIDNumber

nvarchar(15)

非空

唯一的国家/地区标识号(例如身份证号码)。

ContactID

int

非空

标识 Contact 表中的雇员。指向 Contact.ContactID 的外键。

LoginID

nvarchar(256)

非空

网络登录。

ManagerID

int

雇员的上司。指向 Employee.EmployeeID 的外键。

Title

nvarchar(50)

非空

职位(例如买方代表或销售代表)。

BirthDate

datetime

非空

出生日期。

MaritalStatus

nchar(1)

非空

M = 已婚

S = 未婚

Gender

nchar(1)

非空

M = 男

F = 女

HireDate

datetime

非空

雇佣雇员的日期。

SalariedFlag

Flag(用户定义类型)

bit

非空

工作分类。

0 = 计时,可以集体讨价。

1 = 月薪,不能集体讨价。

VacationHours

smallint

非空

假期可持续的小时数。

SickLeaveHours

smallint

非空

病假可持续的小时数。

CurrentFlag

Flag(用户定义类型)

bit

非空

0 = 非活动

1 = 活动

rowguid

uniqueidentifier ROWGUIDCOL

非空

唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。

ModifiedDate

datetime

非空

行的上次更新日期和时间。

请参阅

参考

Address 表 (AdventureWorks)
Contact 表 (AdventureWorks)
Department 表 (AdventureWorks)
EmployeeDepartmentHistory 表 (AdventureWorks)
EmployeePayHistory 表 (AdventureWorks)
JobCandidate 表 (AdventureWorks)

概念

EmployeeAddress 表 (AdventureWorks)

其他资源

AdventureWorks 数据字典

帮助和信息

获取 SQL Server 2005 帮助