Advertisement
anchormodeling

Create source data - day 1

Sep 6th, 2013
2,575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 1.39 KB | None | 0 0
  1. -- #################### Day 1 ############################################################
  2. --============== Create example source table =======================================
  3.  
  4. CREATE TABLE [dbo].[Stages_raw_day1](
  5.     [name] [varchar](200) NULL,
  6.     [address] [varchar](400) NULL
  7. ) ON [PRIMARY]
  8.  
  9. GO
  10.  
  11.  
  12.  
  13. INSERT INTO Stages_raw_day1
  14.     (name,
  15.     address)
  16. VALUES
  17.     ('The Shakespeare Theatre','154bis, boulevard de la Chapelle')
  18.  
  19. --========================================================================
  20.  
  21. INSERT INTO Stages_raw_day1
  22.     (name,
  23.     address)
  24. VALUES
  25.     ('Theatre Victor Hugo','11, rue du Temple')
  26.  
  27. --========================================================================
  28.  
  29. INSERT INTO Stages_raw_day1
  30.     (name,
  31.     address)
  32. VALUES
  33.     ('The Dostojevskij theatre','10, rue Fontaine')
  34.  
  35. --========================================================================
  36.  
  37. INSERT INTO Stages_raw_day1
  38.     (name,
  39.     address)
  40. VALUES
  41.     ('Theatre Sokrates','1, rue du Temple')
  42.  
  43. --========================================================================
  44.  
  45. INSERT INTO Stages_raw_day1
  46.     (name,
  47.     address)
  48. VALUES
  49.     ('Teater August Strindberg','Storgatan 2')
  50.  
  51. --========================================================================
  52.  
  53.  
  54. INSERT INTO Stages_raw_day1
  55.     (name,
  56.     address)
  57. VALUES
  58.     ('Teater Ingmar Bergman','Drottninggatan 55')
  59.  
  60. --========================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement