Difference between revisions of "HumanResources.vEmployeeDepartmentHistory (view)"
Line 39: | Line 39: | ||
| '''view | | '''view | ||
| HumanResources.vEmployeeDepartmentHistory | | HumanResources.vEmployeeDepartmentHistory | ||
− | |- | + | |- valign="top" |
| '''Description | | '''Description | ||
Line 80: | Line 80: | ||
| '''Object Type | | '''Object Type | ||
| '''Dependency Type | | '''Dependency Type | ||
− | + | ||
|- | |- | ||
| [[HumanResources.Department_(table)|HumanResources.Department]] | | [[HumanResources.Department_(table)|HumanResources.Department]] | ||
Line 101: | Line 101: | ||
| Table | | Table | ||
| Select | | Select | ||
+ | |- | ||
+ | | [[.HumanResources_(schema)|.HumanResources]] | ||
+ | | Schema | ||
+ | | Schema | ||
|} | |} |
Revision as of 06:25, 30 November 2009
wikibot
view | HumanResources.vEmployeeDepartmentHistory |
CREATE VIEW [HumanResources].[vEmployeeDepartmentHistory] AS SELECT e.[EmployeeID] ,c.[Title] ,c.[FirstName] ,c.[MiddleName] ,c.[LastName] ,c.[Suffix] ,s.[Name] AS [Shift] ,d.[Name] AS [Department] ,d.[GroupName] ,edh.[StartDate] ,edh.[EndDate] FROM [HumanResources].[Employee] e INNER JOIN [Person].[Contact] c ON c.[ContactID] = e.[ContactID] INNER JOIN [HumanResources].[EmployeeDepartmentHistory] edh ON e.[EmployeeID] = edh.[EmployeeID] INNER JOIN [HumanResources].[Department] d ON edh.[DepartmentID] = d.[DepartmentID] INNER JOIN [HumanResources].[Shift] s ON s.[ShiftID] = edh.[ShiftID];
automatically generated
view | HumanResources.vEmployeeDepartmentHistory |
Description | Returns employee name and current and previous departments. |
CREATE VIEW [HumanResources].[vEmployeeDepartmentHistory] AS SELECT e.[EmployeeID] ,c.[Title] ,c.[FirstName] ,c.[MiddleName] ,c.[LastName] ,c.[Suffix] ,s.[Name] AS [Shift] ,d.[Name] AS [Department] ,d.[GroupName] ,edh.[StartDate] ,edh.[EndDate] FROM [HumanResources].[Employee] e INNER JOIN [Person].[Contact] c ON c.[ContactID] = e.[ContactID] INNER JOIN [HumanResources].[EmployeeDepartmentHistory] edh ON e.[EmployeeID] = edh.[EmployeeID] INNER JOIN [HumanResources].[Department] d ON edh.[DepartmentID] = d.[DepartmentID] INNER JOIN [HumanResources].[Shift] s ON s.[ShiftID] = edh.[ShiftID];
Referenced Object | Object Type | Dependency Type |
HumanResources.Department | Table | Select |
HumanResources.Employee | Table | Select |
HumanResources.EmployeeDepartmentHistory | Table | Select |
HumanResources.Shift | Table | Select |
Person.Contact | Table | Select |
.HumanResources | Schema | Schema |