[SQL] Script om Countries tabel te genereren

Pagina: 1
Acties:
  • 104 views sinds 30-01-2008

  • MrCyber
  • Registratie: Mei 2000
  • Laatst online: 24-05-2018
Ik ben vandaag bezig geweest een SQL Script in elkaar te knutselen die voor mij voor elk project wat ik ga doen een mooie tabel maakt met alle landen en landencodes erin volgens het ISO systeem. Ik weet niet of het dit het juiste forum is, maar ik wilde deze code gewoon met jullie delen. Het is SQL 2000 code, maar als je een beetje handig bent kun je het zelf wel ff omsleutelen naar whatever databeest je gebruikt. Het script kijkt eerst of de tabel bestaat en knikkert de oude tabel weg en maakt dan een nieuwe aan.

Overigens stel ik dit script dus aan een ieder die het gebruiken wil ter beschikking. Als je wilt kun je me er credit voor geven of als bronvermelding vermelden, maar van mij hoeft het niet.

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Countries]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Countries]
GO

CREATE TABLE [dbo].[Countries] (
    [CountryID]  uniqueidentifier ROWGUIDCOL  NOT NULL DEFAULT (newid()),
    [Country] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
    [CountryCode] [varchar] (5) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL 
) ON [PRIMARY]
GO

INSERT INTO Countries (Country,CountryCode) VALUES ('Afghanistan','AF');
INSERT INTO Countries (Country,CountryCode) VALUES ('Albania','AL');
INSERT INTO Countries (Country,CountryCode) VALUES ('Algeria','DZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('American Samoa','AS');
INSERT INTO Countries (Country,CountryCode) VALUES ('Andorra','AD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Angola','AO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Anguilla','AI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Antarctica','AQ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Antigua and Barbuda','AG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Argentina','AR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Armenia','AM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Aruba','AW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Australia','AU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Austria','AT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Azerbaijan','AZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bahamas','BS');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bahrain','BH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bangladesh','BD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Barbados','BB');
INSERT INTO Countries (Country,CountryCode) VALUES ('Belarus','BY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Belgium','BE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Belize','BZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Benin','BJ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bermuda','BM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bhutan','BT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bolivia','BO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bosnia and Herzegovina','BA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Botswana','BW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bouvet Island','BV');
INSERT INTO Countries (Country,CountryCode) VALUES ('Brazil','BR');
INSERT INTO Countries (Country,CountryCode) VALUES ('British Indian Ocean Territory','IO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Brunei Darussalam','BN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Bulgaria','BG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Burkina Faso','BF');
INSERT INTO Countries (Country,CountryCode) VALUES ('Burundi','BI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cambodia','KH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cameroon','CM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Canada','CA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cape Verde','CV');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cayman Islands','KY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Central African Republic','CF');
INSERT INTO Countries (Country,CountryCode) VALUES ('Chad','TD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Chile','CL');
INSERT INTO Countries (Country,CountryCode) VALUES ('China','CN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Christmas Ilsand','CX');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cocos (Keeling) Islands','CC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Colombia','CO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Comoros','KM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Congo','CG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Congo, The Democratic Republic of the','CD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cook Islands','CK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Costa Rica','CR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Côte d''Ivoire','CI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Croatia','HR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cuba','CU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Cyprus','CY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Czech Republic','CZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Denmark','DK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Djibouti','DJ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Dominica','DM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Dominican Republic','DO');
INSERT INTO Countries (Country,CountryCode) VALUES ('East Timor','TP');
INSERT INTO Countries (Country,CountryCode) VALUES ('Ecuador','EC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Egypt','EG');
INSERT INTO Countries (Country,CountryCode) VALUES ('El Salvador','SV');
INSERT INTO Countries (Country,CountryCode) VALUES ('Equatorial Guinea','GQ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Eritrea','ER');
INSERT INTO Countries (Country,CountryCode) VALUES ('Estonia','EE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Ethiopia','ET');
INSERT INTO Countries (Country,CountryCode) VALUES ('Falkland Islands (Malvinas)','FK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Faroe Islands','FO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Fiji','FJ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Finland','FI');
INSERT INTO Countries (Country,CountryCode) VALUES ('France','FR');
INSERT INTO Countries (Country,CountryCode) VALUES ('French Guiana','GF');
INSERT INTO Countries (Country,CountryCode) VALUES ('French Polynesia','PF');
INSERT INTO Countries (Country,CountryCode) VALUES ('French Southern Territories','TF');
INSERT INTO Countries (Country,CountryCode) VALUES ('Gabon','GA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Gambia','GM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Georgia','GE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Germany','DE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Ghana','GH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Gibraltar','GI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Greece','GR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Greenland','GL');
INSERT INTO Countries (Country,CountryCode) VALUES ('Grenada','GD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Guadeloupe','GP');
INSERT INTO Countries (Country,CountryCode) VALUES ('Guam','GU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Guatamala','GT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Guinea','GN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Guinea-Bissau','GW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Guyana','GY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Haiti','HT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Heard Island and McDonald Islands','HM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Holy See (Vatican City State)','VA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Honduras','HN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Hong Kong','HK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Hungary','HU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Iceland','IS');
INSERT INTO Countries (Country,CountryCode) VALUES ('India','IN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Indonesia','ID');
INSERT INTO Countries (Country,CountryCode) VALUES ('Iran, Islamic Republic of','IR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Iraq','IQ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Ireland','IE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Israel','IL');
INSERT INTO Countries (Country,CountryCode) VALUES ('Italy','IT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Jamaica','JM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Japan','JP');
INSERT INTO Countries (Country,CountryCode) VALUES ('Jordan','JO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Kazakstan','KZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Kenya','KE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Kiribati','KI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Korea, Democratic People S Republic of','KP');
INSERT INTO Countries (Country,CountryCode) VALUES ('Korea, Republic of','KR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Kuwait','KW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Kyrgyzstan','KG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Lao People''s Democratic Republic','LA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Latvia','LV');
INSERT INTO Countries (Country,CountryCode) VALUES ('Lebanon','LB');
INSERT INTO Countries (Country,CountryCode) VALUES ('Lesotho','LS');
INSERT INTO Countries (Country,CountryCode) VALUES ('Liberia','LR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Libyan Arab Jamahiriya','LY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Liechtenstein','LI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Lithuania','LT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Luxembourg','LU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Macau','MO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Macedinia, The former Yugoslav Republic of','MK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Madagascar','MG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Malawi','MW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Malaysia','MY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Maldives','MV');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mali','ML');
INSERT INTO Countries (Country,CountryCode) VALUES ('Malta','MT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Marshall Islands','MH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Martinique','MQ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mauritania','MR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mauritius','MU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mayotte','YT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mexico','MX');
INSERT INTO Countries (Country,CountryCode) VALUES ('Micronesia, Federated States of','FM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Moldova, Republic of','MD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Monaco','MC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mongolia','MN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Montserrat','MS');
INSERT INTO Countries (Country,CountryCode) VALUES ('Morocco','MA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Mozambique','MZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Myanmar','MM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Namibia','NA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Nauru','NR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Nepal','NP');
INSERT INTO Countries (Country,CountryCode) VALUES ('Netherlands, The','NL');
INSERT INTO Countries (Country,CountryCode) VALUES ('Netherlands Antilles','AN');
INSERT INTO Countries (Country,CountryCode) VALUES ('New Caledonia','NC');
INSERT INTO Countries (Country,CountryCode) VALUES ('New Zealand','NZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Nicaragua','NI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Niger','NE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Nigeria','NG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Niue','NU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Norfolk Island','NF');
INSERT INTO Countries (Country,CountryCode) VALUES ('Northern Mariana Islands','MP');
INSERT INTO Countries (Country,CountryCode) VALUES ('Norway','NO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Oman','OM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Pakistan','PK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Palau','PW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Palestinian Territory (occupied)','PS');
INSERT INTO Countries (Country,CountryCode) VALUES ('Panama','PA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Papua New Guinea','PG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Paraguay','PY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Peru','PE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Philippines','PH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Pitcairn','PN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Poland','PL');
INSERT INTO Countries (Country,CountryCode) VALUES ('Portugal','PT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Puerto Rico','PR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Qatar','QA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Réunion','RE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Romania','RO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Russion Federation','RU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Rwanda','RW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Saint Helena','SH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Saint Kitts and Nevis','KN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Saint Lucia','LC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Saint Pierre and Miquelon','PM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Saint Vincent and the Grenadines','VC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Samoa','WS');
INSERT INTO Countries (Country,CountryCode) VALUES ('San Marino','SM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Sao Tome and Principe','ST');
INSERT INTO Countries (Country,CountryCode) VALUES ('Saudi Arabia','SA');
INSERT INTO Countries (Country,CountryCode) VALUES ('Senegal','SN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Seychelles','SC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Sierra Leone','SL');
INSERT INTO Countries (Country,CountryCode) VALUES ('Singapore','SG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Slovakia','SK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Slovenia','SI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Solomon Islands','SB');
INSERT INTO Countries (Country,CountryCode) VALUES ('Somalia','SO');
INSERT INTO Countries (Country,CountryCode) VALUES ('South Africa','ZA');
INSERT INTO Countries (Country,CountryCode) VALUES ('South Georgia and the South Sandwich Islands','GS');
INSERT INTO Countries (Country,CountryCode) VALUES ('Spain','ES');
INSERT INTO Countries (Country,CountryCode) VALUES ('Sri Lanka','LK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Sudan','SD');
INSERT INTO Countries (Country,CountryCode) VALUES ('Suriname','SR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Svalbard and Jan Mayen','SJ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Swaziland','SZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Sweden','SE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Switzerland','CH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Syrian Arab Republic','SY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Taiwan, Province of China','TW');
INSERT INTO Countries (Country,CountryCode) VALUES ('Tajikistan','TJ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Tanzania, United Republic of','TZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Thailand','TH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Togo','TG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Tokelau','TK');
INSERT INTO Countries (Country,CountryCode) VALUES ('Tonga','TO');
INSERT INTO Countries (Country,CountryCode) VALUES ('Trinidad and Tobago','TT');
INSERT INTO Countries (Country,CountryCode) VALUES ('Tunisia','TN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Turkey','TR');
INSERT INTO Countries (Country,CountryCode) VALUES ('Turkmenistan','TM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Turks and Caicos Islands','TC');
INSERT INTO Countries (Country,CountryCode) VALUES ('Tuvalu','TV');
INSERT INTO Countries (Country,CountryCode) VALUES ('Uganda','UG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Ukraine','UA');
INSERT INTO Countries (Country,CountryCode) VALUES ('United Arab Emirates','AE');
INSERT INTO Countries (Country,CountryCode) VALUES ('United Kingdom','GB');
INSERT INTO Countries (Country,CountryCode) VALUES ('United States','US');
INSERT INTO Countries (Country,CountryCode) VALUES ('Unites States Minor Outlying Islands','UM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Uruguay','UY');
INSERT INTO Countries (Country,CountryCode) VALUES ('Uzbekistan','UZ');
INSERT INTO Countries (Country,CountryCode) VALUES ('Vanuatu','VU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Venezuela','VE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Viet Nam','VN');
INSERT INTO Countries (Country,CountryCode) VALUES ('Virgin Islands (British)','VG');
INSERT INTO Countries (Country,CountryCode) VALUES ('Virgin Islands (U.S.)','VI');
INSERT INTO Countries (Country,CountryCode) VALUES ('Wallis and Futuna','WF');
INSERT INTO Countries (Country,CountryCode) VALUES ('Western Sahara','EH');
INSERT INTO Countries (Country,CountryCode) VALUES ('Yemen','YE');
INSERT INTO Countries (Country,CountryCode) VALUES ('Yugoslavia','YU');
INSERT INTO Countries (Country,CountryCode) VALUES ('Zambia','ZM');
INSERT INTO Countries (Country,CountryCode) VALUES ('Zimbabwe','ZW');

  • Annie
  • Registratie: Juni 1999
  • Laatst online: 25-11-2021

Annie

amateur megalomaan

Paar vraagjes:
  1. waarom een uniqueidentifier voor CountryID?
  2. waarom een varchar(5) voor CountryCode?
Btw. credits? Voor een table definitie en wat insert statements?

[ Voor 0% gewijzigd door Annie op 12-08-2002 01:16 . Reden: [number] tag doet ineens heel raar ]

Today's subliminal thought is:


  • dusty
  • Registratie: Mei 2000
  • Laatst online: 21-02 00:06

dusty

Celebrate Life!

goh, insert statements.

Mooi voor het archief van GOT.

Back In Black!
"Je moet haar alleen aan de ketting leggen" - MueR


Dit topic is gesloten.