Advertisement
anchormodeling

Create source data - day 2

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