Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. DECLARE @TEMP_INC TABLE (
  2. INC_ID INT,
  3. OBJ_ID INT,
  4. INC_DESCRIPCION VARCHAR(255),
  5. INC_TIPOOBJ INT,
  6. INC_FC DATE,
  7. INC_FM DATE,
  8. INA_ID INT
  9. )
  10.  
  11. INSERT INTO @TEMP_INC (INC_ID, OBJ_ID, INC_DESCRIPCION, INC_TIPOOBJ, INC_FC, INC_FM, INA_ID)
  12. VALUES
  13. (1439166, 620310, '* descripcion tipo 123', 7, '2015-07-04 17:07:36.000', '2015-07-04 17:07:36.000', 8),
  14. (1439167, 620310, '* descripcion tipo 124', 7, '2015-07-04 17:07:36.000', '2015-07-04 17:07:36.000', 8),
  15. (1439168, 620311, '* descripcion tipo 125', 7, '2015-07-04 17:07:37.000', '2015-07-04 17:07:37.000', 12),
  16. (1439169, 620311, '* descripcion tipo 126', 7, '2015-07-04 17:07:37.000', '2015-07-04 17:07:37.000', 15),
  17. (1439170, 620312, '* descripcion tipo 127', 7, '2015-07-04 17:07:37.000', '2015-07-04 17:07:37.000', 20),
  18. (1439171, 620312, '* descripcion tipo 128', 7, '2015-07-04 17:07:37.000', '2015-07-04 17:07:37.000', 22),
  19. (1439172, 620313, '* descripcion tipo 129', 7, '2015-07-04 17:07:38.000', '2015-07-04 17:07:38.000', 27),
  20. (1439173, 620313, '* descripcion tipo 132', 7, '2015-07-04 17:07:38.000', '2015-07-04 17:07:38.000', 26),
  21. (1439174, 620314, '* descripcion tipo 133', 7, '2015-07-04 17:07:39.000', '2015-07-04 17:07:39.000', 26),
  22. (1439175, 620314, '* descripcion tipo 134', 7, '2015-07-04 17:07:39.000', '2015-07-04 17:07:39.000', 24)
  23.  
  24. SELECT
  25. INC_ID,
  26. OBJ_ID,
  27. INC_DESCRIPCION,
  28. INC_TIPOOBJ,
  29. INC_FC,
  30. INC_FM,
  31. INA_ID
  32. FROM @TEMP_INC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement