Advertisement
Guest User

Untitled

a guest
Nov 14th, 2016
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. insert into Users (email,password,notification)
  2.  
  3. values
  4. ('antoine@hotmail.com','aaaa123',1),
  5. ('lucien@gmail.com','bbb456',1),
  6. ('maxime@gotmail.com','ccc789',0),
  7. ('theo@outlook.com','motDePasse',1),
  8. ('veronique@gmail.com','login',0),
  9. ('nicolas@gmail.com','945Bonjour',1),
  10. ('loic@outlook.com','Hello123',1),
  11. ('martin@gmail.com','C7to95',0),
  12. ('francois@hotmail.com','Hello_World',1),
  13. ('bill@microsoft.com','r98g4re9g',1);
  14.  
  15. insert into Streets (streetname)
  16.  
  17. values
  18. ('rue lucien nameche'),
  19. ('rue godefroid'),
  20. ('rue des noyers'),
  21. ('rue des petunias'),
  22. ('rue des pommiers'),
  23. ('rue alfred brasseur'),
  24. ('rue badoux'),
  25. ('rue alexandre colin');
  26.  
  27. insert into parkings (parkingname, availableplaces, occupiedplaces)
  28.  
  29. values
  30. ('Namur expo',475,58),
  31. ('Hotel de ville',350,70),
  32. ('Leopold',500,98),
  33. ('Du centre',160,150),
  34. ('Gifar',500,450),
  35. ('Beffroi',258,189),
  36. ('Casernes',670,540),
  37. ('De la gare',655,180),
  38. ('Mutualite chretienne',70,68),
  39. ('St Nicolas',276,210);
  40.  
  41. insert into numbers (number)
  42.  
  43. values
  44. ('1'),
  45. ('2'),
  46. ('3'),
  47. ('3A'),
  48. ('4'),
  49. ('5'),
  50. ('6'),
  51.  
  52. ('1'),
  53. ('3'),
  54. ('4'),
  55. ('5'),
  56. ('6'),
  57. ('7B'),
  58. ('8'),
  59. ('10'),
  60.  
  61. ('1'),
  62. ('2'),
  63. ('3'),
  64. ('4'),
  65. ('5A'),
  66. ('5B'),
  67. ('6'),
  68. ('7'),
  69.  
  70. ('5B'),
  71. ('1'),
  72. ('2'),
  73. ('3'),
  74. ('4'),
  75. ('5'),
  76. ('6A'),
  77. ('6B'),
  78.  
  79. ('1'),
  80. ('2'),
  81. ('3'),
  82. ('4'),
  83. ('5'),
  84. ('6'),
  85. ('7'),
  86. ('8'),
  87. ('9'),
  88. ('10'),
  89.  
  90. ('1'),
  91. ('2'),
  92. ('3'),
  93. ('4'),
  94. ('4B'),
  95. ('5'),
  96. ('6'),
  97. ('7'),
  98. ('8'),
  99.  
  100. ('1'),
  101. ('3'),
  102. ('4'),
  103. ('5'),
  104. ('6'),
  105. ('7'),
  106. ('8B'),
  107.  
  108. ('1'),
  109. ('2'),
  110. ('3'),
  111. ('4'),
  112. ('5'),
  113. ('5A'),
  114. ('5B'),
  115. ('6'),
  116. ('7'),
  117. ('8');
  118.  
  119.  
  120. /*insert into StreetUsers(iduser,idstreet)
  121.  
  122. values
  123.  
  124. (1,2),(1,3),(1,7),
  125. (2,3),(2,8),
  126. (3,1),
  127. (5,6),(5,8),
  128. (6,6),(6,1),
  129. (7,5),
  130. (8,4),(8,2),(8,5),
  131. (9,5);*/
  132.  
  133.  
  134. /*insertion de perturbations de type chantier*/
  135.  
  136. insert into TrafficObstructions(startdate,starthour,enddate,endhour,codetypeobstruction,trafficimpact,operator,idstreetstart)
  137. values
  138.  
  139. ('05-1-2017','12:10:00','05-8-2017','10:00:00','chantier','Circulation bloquée','VOO',3),
  140. ('07-6-2017','12:10:00','7-10-2017','10:00:00','chantier','Circulation sur une bande','VOO',4),
  141. ('02-9-2017','09:30:00','02-11-2017','10:00:00','chantier','Déviation','ORES',5);
  142.  
  143.  
  144. /*Insertion de perturbations de type festivité*/
  145.  
  146. insert into TrafficObstructions(startdate,starthour,enddate,endhour,codetypeobstruction,trafficimpact,infofestivity,idstreetstart,idstreetend)
  147. values
  148.  
  149. ('5-26-2017','8:00:00','5-28-2017','00:00:00','festivité','Circulation impossible','Namur en mai',4,5);
  150.  
  151.  
  152.  
  153. /*Insertion de perturbations de type autre*/
  154.  
  155. insert into TrafficObstructions(startdate,starthour,enddate,endhour,codetypeobstruction,trafficimpact,infoother,idstreetstart,idstreetend)
  156. values
  157.  
  158. ('4-2-2017','8:00:00','4-9-2017','00:00:00','autre','Circulation partielle','Braderie',1,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement