Guest User

Untitled

a guest
Jul 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Id | DateTime | State
  2. 1 | 2018-07-16 10:00:00 | 0
  3. 2 | 2018-07-16 10:15:34 | 1
  4. 3 | 2018-07-16 10:21:12 | 0
  5. 4 | 2018-07-16 10:32:45 | 1
  6. 5 | 2018-07-16 10:44:05 | 0
  7.  
  8. DateTime | State
  9. 2018-07-16 10:00:00 | 0
  10. 2018-07-16 10:15:34 | 1
  11. 2018-07-16 10:21:11 | 1 <<<
  12. 2018-07-16 10:21:12 | 0
  13. 2018-07-16 10:32:45 | 1
  14. 2018-07-16 10:44:04 | 1 <<<
  15. 2018-07-16 10:44:05 | 0
  16.  
  17. CREATE TABLE [dbo].[SwitchSeries](
  18. [Id] [int] NOT NULL,
  19. [DateTime] [datetime2](7) NOT NULL,
  20. [State] [tinyint] NOT NULL
  21. )
  22.  
  23. INSERT INTO SwitchSeries VALUES
  24. (1, '2018-07-16 10:00:00', 0),
  25. (2, '2018-07-16 10:15:34', 1),
  26. (3, '2018-07-16 10:21:12', 0),
  27. (4, '2018-07-16 10:32:45', 1),
  28. (5, '2018-07-16 10:44:05', 0)
Add Comment
Please, Sign In to add comment