|
-- (1)
INSERT INTO State
(StateCode, Name, Description)
VALUES
('O', 'Open', 'Indicates that W'),
('B', 'Begun', 'Indicates that X'),
('R', 'In review', 'Indicates that Y'),
('C', 'Completed', 'Indicates that Z');
-- (2)
INSERT INTO Task
(TaskNumber, Description, Etcetera, CreatedDateTime)
VALUES
(1750, 'Time series demo', 'DBA.SE', '2017-02-07 05:12:04.000'),
(1, 'Time series test', 'Evaluation', '2017-02-06 09:46:04.000');
-- (3)
INSERT INTO StateSpecification
(TaskNumber, SpecifiedDateTime, StateCode)
VALUES
(1750, '2016-12-01 16:58:12.000', 'O'),
(1750, '2016-12-02 09:12:05.000', 'B'),
(1750, '2016-12-04 10:57:01.000', 'R'),
(1750, '2016-12-07 07:33:08.000', 'C'),
(1750, '2016-12-08 12:12:09.000', 'R'),
(1750, '2016-12-08 19:46:01.000', 'B'),
(1750, '2016-12-09 06:24:07.000', 'R'),
(1750, '2016-12-11 07:24:07.000', 'C'),
(1, '2016-11-09 06:12:03.000', 'O'),
(1, '2016-11-10 06:45:05.000', 'B'),
(1, '2016-11-11 08:42:07.000', 'R'),
(1, '2016-11-12 09:01:02.000', 'C'),
(1, '2016-11-13 10:28:01.000', 'O'),
(1, '2016-11-14 15:10:01.000', 'R'),
(1, '2016-11-15 08:17:02.000', 'O'),
(1, '2016-11-16 05:12:06.000', 'C');
|