-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04___ create Ops data.sql
65 lines (56 loc) · 1021 Bytes
/
04___ create Ops data.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
USE [OpsDb]
GO
/*
Create Ops data
*/
INSERT INTO [dbo].[Contract]
([ContractName])
VALUES
('JC-01')
GO
INSERT INTO [dbo].[AOR_Type]
([AOR_Name])
VALUES
('Project Manager')
GO
INSERT INTO [dbo].[AOR_Type]
([AOR_Name])
VALUES
('Superintendent')
GO
INSERT INTO [dbo].[Employees]
([EmployeeName])
VALUES
('Bob Kane')
GO
INSERT INTO [dbo].[Employees]
([EmployeeName])
VALUES
('Damian Wayne')
GO
INSERT INTO [dbo].[OpsAOR]
([StartDt]
,[EndDt]
,[Cnct_ID]
,[AT_ID]
,[E_ID])
VALUES
('1/1/2020'
,CAST(null as date)
,1
,1
,1)
GO
INSERT INTO [dbo].[OpsAOR]
([StartDt]
,[EndDt]
,[Cnct_ID]
,[AT_ID]
,[E_ID])
VALUES
('1/1/2020'
,CAST(null as date)
,1
,2
,2)
GO