forked from NOVA-college-Haarlem/formula1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformula1-drivers.sql
905 lines (893 loc) · 102 KB
/
formula1-drivers.sql
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Gegenereerd op: 27 jun 2022 om 13:50
-- Serverversie: 10.4.22-MariaDB
-- PHP-versie: 8.1.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `formula1`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `drivers`
--
CREATE TABLE `drivers` (
`driverId` int(3) NOT NULL,
`driverRef` varchar(18) DEFAULT NULL,
`number` varchar(2) DEFAULT NULL,
`code` varchar(3) DEFAULT NULL,
`forename` varchar(17) DEFAULT NULL,
`surname` varchar(23) DEFAULT NULL,
`dob` varchar(10) DEFAULT NULL,
`nationality` varchar(17) DEFAULT NULL,
`url` varchar(65) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Gegevens worden geëxporteerd voor tabel `drivers`
--
INSERT INTO `drivers` (`driverId`, `driverRef`, `number`, `code`, `forename`, `surname`, `dob`, `nationality`, `url`) VALUES
(1, 'hamilton', '44', 'HAM', 'Lewis', 'Hamilton', '07/01/1985', 'British', 'http://en.wikipedia.org/wiki/Lewis_Hamilton'),
(2, 'heidfeld', NULL, 'HEI', 'Nick', 'Heidfeld', '10/05/1977', 'German', 'http://en.wikipedia.org/wiki/Nick_Heidfeld'),
(3, 'rosberg', '6', 'ROS', 'Nico', 'Rosberg', '27/06/1985', 'German', 'http://en.wikipedia.org/wiki/Nico_Rosberg'),
(4, 'alonso', '14', 'ALO', 'Fernando', 'Alonso', '29/07/1981', 'Spanish', 'http://en.wikipedia.org/wiki/Fernando_Alonso'),
(5, 'kovalainen', NULL, 'KOV', 'Heikki', 'Kovalainen', '19/10/1981', 'Finnish', 'http://en.wikipedia.org/wiki/Heikki_Kovalainen'),
(6, 'nakajima', NULL, 'NAK', 'Kazuki', 'Nakajima', '11/01/1985', 'Japanese', 'http://en.wikipedia.org/wiki/Kazuki_Nakajima'),
(7, 'bourdais', NULL, 'BOU', 'SÌ©bastien', 'Bourdais', '28/02/1979', 'French', 'http://en.wikipedia.org/wiki/S%C3%A9bastien_Bourdais'),
(8, 'raikkonen', '7', 'RAI', 'Kimi', 'RÌ_ikk̦nen', '17/10/1979', 'Finnish', 'http://en.wikipedia.org/wiki/Kimi_R%C3%A4ikk%C3%B6nen'),
(9, 'kubica', NULL, 'KUB', 'Robert', 'Kubica', '07/12/1984', 'Polish', 'http://en.wikipedia.org/wiki/Robert_Kubica'),
(10, 'glock', NULL, 'GLO', 'Timo', 'Glock', '18/03/1982', 'German', 'http://en.wikipedia.org/wiki/Timo_Glock'),
(11, 'sato', NULL, 'SAT', 'Takuma', 'Sato', '28/01/1977', 'Japanese', 'http://en.wikipedia.org/wiki/Takuma_Sato'),
(12, 'piquet_jr', NULL, 'PIQ', 'Nelson', 'Piquet Jr.', '25/07/1985', 'Brazilian', 'http://en.wikipedia.org/wiki/Nelson_Piquet,_Jr.'),
(13, 'massa', '19', 'MAS', 'Felipe', 'Massa', '25/04/1981', 'Brazilian', 'http://en.wikipedia.org/wiki/Felipe_Massa'),
(14, 'coulthard', NULL, 'COU', 'David', 'Coulthard', '27/03/1971', 'British', 'http://en.wikipedia.org/wiki/David_Coulthard'),
(15, 'trulli', NULL, 'TRU', 'Jarno', 'Trulli', '13/07/1974', 'Italian', 'http://en.wikipedia.org/wiki/Jarno_Trulli'),
(16, 'sutil', '99', 'SUT', 'Adrian', 'Sutil', '11/01/1983', 'German', 'http://en.wikipedia.org/wiki/Adrian_Sutil'),
(17, 'webber', NULL, 'WEB', 'Mark', 'Webber', '27/08/1976', 'Australian', 'http://en.wikipedia.org/wiki/Mark_Webber'),
(18, 'button', '22', 'BUT', 'Jenson', 'Button', '19/01/1980', 'British', 'http://en.wikipedia.org/wiki/Jenson_Button'),
(19, 'davidson', NULL, 'DAV', 'Anthony', 'Davidson', '18/04/1979', 'British', 'http://en.wikipedia.org/wiki/Anthony_Davidson'),
(20, 'vettel', '5', 'VET', 'Sebastian', 'Vettel', '03/07/1987', 'German', 'http://en.wikipedia.org/wiki/Sebastian_Vettel'),
(21, 'fisichella', NULL, 'FIS', 'Giancarlo', 'Fisichella', '14/01/1973', 'Italian', 'http://en.wikipedia.org/wiki/Giancarlo_Fisichella'),
(22, 'barrichello', NULL, 'BAR', 'Rubens', 'Barrichello', '23/05/1972', 'Brazilian', 'http://en.wikipedia.org/wiki/Rubens_Barrichello'),
(23, 'ralf_schumacher', NULL, 'SCH', 'Ralf', 'Schumacher', '30/06/1975', 'German', 'http://en.wikipedia.org/wiki/Ralf_Schumacher'),
(24, 'liuzzi', NULL, 'LIU', 'Vitantonio', 'Liuzzi', '06/08/1980', 'Italian', 'http://en.wikipedia.org/wiki/Vitantonio_Liuzzi'),
(25, 'wurz', NULL, 'WUR', 'Alexander', 'Wurz', '15/02/1974', 'Austrian', 'http://en.wikipedia.org/wiki/Alexander_Wurz'),
(26, 'speed', NULL, 'SPE', 'Scott', 'Speed', '24/01/1983', 'American', 'http://en.wikipedia.org/wiki/Scott_Speed'),
(27, 'albers', NULL, 'ALB', 'Christijan', 'Albers', '16/04/1979', 'Dutch', 'http://en.wikipedia.org/wiki/Christijan_Albers'),
(28, 'markus_winkelhock', NULL, 'WIN', 'Markus', 'Winkelhock', '13/06/1980', 'German', 'http://en.wikipedia.org/wiki/Markus_Winkelhock'),
(29, 'yamamoto', NULL, 'YAM', 'Sakon', 'Yamamoto', '09/07/1982', 'Japanese', 'http://en.wikipedia.org/wiki/Sakon_Yamamoto'),
(30, 'michael_schumacher', NULL, 'MSC', 'Michael', 'Schumacher', '03/01/1969', 'German', 'http://en.wikipedia.org/wiki/Michael_Schumacher'),
(31, 'montoya', NULL, 'MON', 'Juan', 'Pablo Montoya', '20/09/1975', 'Colombian', 'http://en.wikipedia.org/wiki/Juan_Pablo_Montoya'),
(32, 'klien', NULL, 'KLI', 'Christian', 'Klien', '07/02/1983', 'Austrian', 'http://en.wikipedia.org/wiki/Christian_Klien'),
(33, 'monteiro', NULL, 'TMO', 'Tiago', 'Monteiro', '24/07/1976', 'Portuguese', 'http://en.wikipedia.org/wiki/Tiago_Monteiro'),
(34, 'ide', NULL, 'IDE', 'Yuji', 'Ide', '21/01/1975', 'Japanese', 'http://en.wikipedia.org/wiki/Yuji_Ide'),
(35, 'villeneuve', NULL, 'VIL', 'Jacques', 'Villeneuve', '09/04/1971', 'Canadian', 'http://en.wikipedia.org/wiki/Jacques_Villeneuve'),
(36, 'montagny', NULL, 'FMO', 'Franck', 'Montagny', '05/01/1978', 'French', 'http://en.wikipedia.org/wiki/Franck_Montagny'),
(37, 'rosa', NULL, 'DLR', 'Pedro', 'de la Rosa', '24/02/1971', 'Spanish', 'http://en.wikipedia.org/wiki/Pedro_de_la_Rosa'),
(38, 'doornbos', NULL, 'DOO', 'Robert', 'Doornbos', '23/09/1981', 'Dutch', 'http://en.wikipedia.org/wiki/Robert_Doornbos'),
(39, 'karthikeyan', NULL, 'KAR', 'Narain', 'Karthikeyan', '14/01/1977', 'Indian', 'http://en.wikipedia.org/wiki/Narain_Karthikeyan'),
(40, 'friesacher', NULL, 'FRI', 'Patrick', 'Friesacher', '26/09/1980', 'Austrian', 'http://en.wikipedia.org/wiki/Patrick_Friesacher'),
(41, 'zonta', NULL, 'ZON', 'Ricardo', 'Zonta', '23/03/1976', 'Brazilian', 'http://en.wikipedia.org/wiki/Ricardo_Zonta'),
(42, 'pizzonia', NULL, 'PIZ', 'Ant̫nio', 'Pizzonia', '11/09/1980', 'Brazilian', 'http://en.wikipedia.org/wiki/Ant%C3%B4nio_Pizzonia'),
(43, 'matta', NULL, '', 'Cristiano', 'da Matta', '19/09/1973', 'Brazilian', 'http://en.wikipedia.org/wiki/Cristiano_da_Matta'),
(44, 'panis', NULL, '', 'Olivier', 'Panis', '02/09/1966', 'French', 'http://en.wikipedia.org/wiki/Olivier_Panis'),
(45, 'pantano', NULL, '', 'Giorgio', 'Pantano', '04/02/1979', 'Italian', 'http://en.wikipedia.org/wiki/Giorgio_Pantano'),
(46, 'bruni', NULL, '', 'Gianmaria', 'Bruni', '30/05/1981', 'Italian', 'http://en.wikipedia.org/wiki/Gianmaria_Bruni'),
(47, 'baumgartner', NULL, '', 'Zsolt', 'Baumgartner', '01/01/1981', 'Hungarian', 'http://en.wikipedia.org/wiki/Zsolt_Baumgartner'),
(48, 'gene', NULL, '', 'Marc', 'Gen̩', '29/03/1974', 'Spanish', 'http://en.wikipedia.org/wiki/Marc_Gen%C3%A9'),
(49, 'frentzen', NULL, '', 'Heinz-Harald', 'Frentzen', '18/05/1967', 'German', 'http://en.wikipedia.org/wiki/Heinz-Harald_Frentzen'),
(50, 'verstappen', NULL, '', 'Jos', 'Verstappen', '04/03/1972', 'Dutch', 'http://en.wikipedia.org/wiki/Jos_Verstappen'),
(51, 'wilson', NULL, '', 'Justin', 'Wilson', '31/07/1978', 'British', 'http://en.wikipedia.org/wiki/Justin_Wilson_(racing_driver)'),
(52, 'firman', NULL, '', 'Ralph', 'Firman', '20/05/1975', 'Irish', 'http://en.wikipedia.org/wiki/Ralph_Firman'),
(53, 'kiesa', NULL, '', 'Nicolas', 'Kiesa', '03/03/1978', 'Danish', 'http://en.wikipedia.org/wiki/Nicolas_Kiesa'),
(54, 'burti', NULL, '', 'Luciano', 'Burti', '05/03/1975', 'Brazilian', 'http://en.wikipedia.org/wiki/Luciano_Burti'),
(55, 'alesi', NULL, '', 'Jean', 'Alesi', '11/06/1964', 'French', 'http://en.wikipedia.org/wiki/Jean_Alesi'),
(56, 'irvine', NULL, '', 'Eddie', 'Irvine', '10/11/1965', 'British', 'http://en.wikipedia.org/wiki/Eddie_Irvine'),
(57, 'hakkinen', NULL, '', 'Mika', 'HÌ_kkinen', '28/09/1968', 'Finnish', 'http://en.wikipedia.org/wiki/Mika_H%C3%A4kkinen'),
(58, 'marques', NULL, '', 'Tarso', 'Marques', '19/01/1976', 'Brazilian', 'http://en.wikipedia.org/wiki/Tarso_Marques'),
(59, 'bernoldi', NULL, '', 'Enrique', 'Bernoldi', '19/10/1978', 'Brazilian', 'http://en.wikipedia.org/wiki/Enrique_Bernoldi'),
(60, 'mazzacane', NULL, '', 'GastÌ_n', 'Mazzacane', '08/05/1975', 'Argentine', 'http://en.wikipedia.org/wiki/Gast%C3%B3n_Mazzacane'),
(61, 'enge', NULL, '', 'TomÌÁÁ', 'Enge', '11/09/1976', 'Czech', 'http://en.wikipedia.org/wiki/Tom%C3%A1%C5%A1_Enge'),
(62, 'yoong', NULL, '', 'Alex', 'Yoong', '20/07/1976', 'Malaysian', 'http://en.wikipedia.org/wiki/Alex_Yoong'),
(63, 'salo', NULL, '', 'Mika', 'Salo', '30/11/1966', 'Finnish', 'http://en.wikipedia.org/wiki/Mika_Salo'),
(64, 'diniz', NULL, '', 'Pedro', 'Diniz', '22/05/1970', 'Brazilian', 'http://en.wikipedia.org/wiki/Pedro_Diniz'),
(65, 'herbert', NULL, '', 'Johnny', 'Herbert', '25/06/1964', 'British', 'http://en.wikipedia.org/wiki/Johnny_Herbert'),
(66, 'mcnish', NULL, '', 'Allan', 'McNish', '29/12/1969', 'British', 'http://en.wikipedia.org/wiki/Allan_McNish'),
(67, 'buemi', NULL, 'BUE', 'SÌ©bastien', 'Buemi', '31/10/1988', 'Swiss', 'http://en.wikipedia.org/wiki/S%C3%A9bastien_Buemi'),
(68, 'takagi', NULL, '', 'Toranosuke', 'Takagi', '12/02/1974', 'Japanese', 'http://en.wikipedia.org/wiki/Toranosuke_Takagi'),
(69, 'badoer', NULL, 'BAD', 'Luca', 'Badoer', '25/01/1971', 'Italian', 'http://en.wikipedia.org/wiki/Luca_Badoer'),
(70, 'zanardi', NULL, '', 'Alessandro', 'Zanardi', '23/10/1966', 'Italian', 'http://en.wikipedia.org/wiki/Alex_Zanardi'),
(71, 'damon_hill', NULL, '', 'Damon', 'Hill', '17/09/1960', 'British', 'http://en.wikipedia.org/wiki/Damon_Hill'),
(72, 'sarrazin', NULL, '', 'St̩phane', 'Sarrazin', '02/11/1975', 'French', 'http://en.wikipedia.org/wiki/St%C3%A9phane_Sarrazin'),
(73, 'rosset', NULL, '', 'Ricardo', 'Rosset', '27/07/1968', 'Brazilian', 'http://en.wikipedia.org/wiki/Ricardo_Rosset'),
(74, 'tuero', NULL, '', 'Esteban', 'Tuero', '22/04/1978', 'Argentine', 'http://en.wikipedia.org/wiki/Esteban_Tuero'),
(75, 'nakano', NULL, '', 'Shinji', 'Nakano', '01/04/1971', 'Japanese', 'http://en.wikipedia.org/wiki/Shinji_Nakano'),
(76, 'magnussen', NULL, 'MAG', 'Jan', 'Magnussen', '04/07/1973', 'Danish', 'http://en.wikipedia.org/wiki/Jan_Magnussen'),
(77, 'berger', NULL, '', 'Gerhard', 'Berger', '27/08/1959', 'Austrian', 'http://en.wikipedia.org/wiki/Gerhard_Berger'),
(78, 'larini', NULL, '', 'Nicola', 'Larini', '19/03/1964', 'Italian', 'http://en.wikipedia.org/wiki/Nicola_Larini'),
(79, 'katayama', NULL, '', 'Ukyo', 'Katayama', '29/05/1963', 'Japanese', 'http://en.wikipedia.org/wiki/Ukyo_Katayama'),
(80, 'sospiri', NULL, '', 'Vincenzo', 'Sospiri', '07/10/1966', 'Italian', 'http://en.wikipedia.org/wiki/Vincenzo_Sospiri'),
(81, 'morbidelli', NULL, '', 'Gianni', 'Morbidelli', '13/01/1968', 'Italian', 'http://en.wikipedia.org/wiki/Gianni_Morbidelli'),
(82, 'fontana', NULL, '', 'Norberto', 'Fontana', '20/01/1975', 'Argentine', 'http://en.wikipedia.org/wiki/Norberto_Fontana'),
(83, 'lamy', NULL, '', 'Pedro', 'Lamy', '20/03/1972', 'Portuguese', 'http://en.wikipedia.org/wiki/Pedro_Lamy'),
(84, 'brundle', NULL, '', 'Martin', 'Brundle', '01/06/1959', 'British', 'http://en.wikipedia.org/wiki/Martin_Brundle'),
(85, 'montermini', NULL, '', 'Andrea', 'Montermini', '30/05/1964', 'Italian', 'http://en.wikipedia.org/wiki/Andrea_Montermini'),
(86, 'lavaggi', NULL, '', 'Giovanni', 'Lavaggi', '18/02/1958', 'Italian', 'http://en.wikipedia.org/wiki/Giovanni_Lavaggi'),
(87, 'blundell', NULL, '', 'Mark', 'Blundell', '08/04/1966', 'British', 'http://en.wikipedia.org/wiki/Mark_Blundell'),
(88, 'suzuki', NULL, '', 'Aguri', 'Suzuki', '08/09/1960', 'Japanese', 'http://en.wikipedia.org/wiki/Aguri_Suzuki'),
(89, 'inoue', NULL, '', 'Taki', 'Inoue', '05/09/1963', 'Japanese', 'http://en.wikipedia.org/wiki/Taki_Inoue'),
(90, 'moreno', NULL, '', 'Roberto', 'Moreno', '11/02/1959', 'Brazilian', 'http://en.wikipedia.org/wiki/Roberto_Moreno'),
(91, 'wendlinger', NULL, '', 'Karl', 'Wendlinger', '20/12/1968', 'Austrian', 'http://en.wikipedia.org/wiki/Karl_Wendlinger'),
(92, 'gachot', NULL, '', 'Bertrand', 'Gachot', '23/12/1962', 'Belgian', 'http://en.wikipedia.org/wiki/Bertrand_Gachot'),
(93, 'schiattarella', NULL, '', 'Domenico', 'Schiattarella', '17/11/1967', 'Italian', 'http://en.wikipedia.org/wiki/Domenico_Schiattarella'),
(94, 'martini', NULL, '', 'Pierluigi', 'Martini', '23/04/1961', 'Italian', 'http://en.wikipedia.org/wiki/Pierluigi_Martini'),
(95, 'mansell', NULL, '', 'Nigel', 'Mansell', '08/08/1953', 'British', 'http://en.wikipedia.org/wiki/Nigel_Mansell'),
(96, 'boullion', NULL, '', 'Jean-Christophe', 'Boullion', '27/12/1969', 'French', 'http://en.wikipedia.org/wiki/Jean-Christophe_Boullion'),
(97, 'papis', NULL, '', 'Massimiliano', 'Papis', '03/10/1969', 'Italian', 'http://en.wikipedia.org/wiki/Massimiliano_Papis'),
(98, 'deletraz', NULL, '', 'Jean-Denis', 'D̩l̩traz', '01/10/1963', 'Swiss', 'http://en.wikipedia.org/wiki/Jean-Denis_Deletraz'),
(99, 'tarquini', NULL, '', 'Gabriele', 'Tarquini', '02/03/1962', 'Italian', 'http://en.wikipedia.org/wiki/Gabriele_Tarquini'),
(100, 'comas', NULL, '', 'Ìärik', 'Comas', '28/09/1963', 'French', 'http://en.wikipedia.org/wiki/%C3%89rik_Comas'),
(101, 'brabham', NULL, '', 'David', 'Brabham', '05/09/1965', 'Australian', 'http://en.wikipedia.org/wiki/David_Brabham'),
(102, 'senna', NULL, '', 'Ayrton', 'Senna', '21/03/1960', 'Brazilian', 'http://en.wikipedia.org/wiki/Ayrton_Senna'),
(103, 'bernard', NULL, '', 'Ìäric', 'Bernard', '24/08/1964', 'French', 'http://en.wikipedia.org/wiki/%C3%89ric_Bernard'),
(104, 'fittipaldi', NULL, '', 'Christian', 'Fittipaldi', '18/01/1971', 'Brazilian', 'http://en.wikipedia.org/wiki/Christian_Fittipaldi'),
(105, 'alboreto', NULL, '', 'Michele', 'Alboreto', '23/12/1956', 'Italian', 'http://en.wikipedia.org/wiki/Michele_Alboreto'),
(106, 'beretta', NULL, '', 'Olivier', 'Beretta', '23/11/1969', 'Monegasque', 'http://en.wikipedia.org/wiki/Olivier_Beretta'),
(107, 'ratzenberger', NULL, '', 'Roland', 'Ratzenberger', '04/07/1960', 'Austrian', 'http://en.wikipedia.org/wiki/Roland_Ratzenberger'),
(108, 'belmondo', NULL, '', 'Paul', 'Belmondo', '23/04/1963', 'French', 'http://en.wikipedia.org/wiki/Paul_Belmondo'),
(109, 'lehto', NULL, '', 'Jyrki', 'JÌ_rvilehto', '31/01/1966', 'Finnish', 'http://en.wikipedia.org/wiki/Jyrki_J%C3%A4rvilehto'),
(110, 'cesaris', NULL, '', 'Andrea', 'de Cesaris', '31/05/1959', 'Italian', 'http://en.wikipedia.org/wiki/Andrea_de_Cesaris'),
(111, 'gounon', NULL, '', 'Jean-Marc', 'Gounon', '01/01/1963', 'French', 'http://en.wikipedia.org/wiki/Jean-Marc_Gounon'),
(112, 'alliot', NULL, '', 'Philippe', 'Alliot', '27/07/1954', 'French', 'http://en.wikipedia.org/wiki/Philippe_Alliot'),
(113, 'adams', NULL, '', 'Philippe', 'Adams', '19/11/1969', 'Belgian', 'http://en.wikipedia.org/wiki/Philippe_Adams'),
(114, 'dalmas', NULL, '', 'Yannick', 'Dalmas', '28/07/1961', 'French', 'http://en.wikipedia.org/wiki/Yannick_Dalmas'),
(115, 'noda', NULL, '', 'Hideki', 'Noda', '07/03/1969', 'Japanese', 'http://en.wikipedia.org/wiki/Hideki_Noda'),
(116, 'lagorce', NULL, '', 'Franck', 'Lagorce', '01/09/1968', 'French', 'http://en.wikipedia.org/wiki/Franck_Lagorce'),
(117, 'prost', NULL, '', 'Alain', 'Prost', '24/02/1955', 'French', 'http://en.wikipedia.org/wiki/Alain_Prost'),
(118, 'warwick', NULL, '', 'Derek', 'Warwick', '27/08/1954', 'British', 'http://en.wikipedia.org/wiki/Derek_Warwick'),
(119, 'patrese', NULL, '', 'Riccardo', 'Patrese', '17/04/1954', 'Italian', 'http://en.wikipedia.org/wiki/Riccardo_Patrese'),
(120, 'barbazza', NULL, '', 'Fabrizio', 'Barbazza', '02/04/1963', 'Italian', 'http://en.wikipedia.org/wiki/Fabrizio_Barbazza'),
(121, 'andretti', NULL, '', 'Michael', 'Andretti', '05/10/1962', 'American', 'http://en.wikipedia.org/wiki/Michael_Andretti'),
(122, 'capelli', NULL, '', 'Ivan', 'Capelli', '24/05/1963', 'Italian', 'http://en.wikipedia.org/wiki/Ivan_Capelli'),
(123, 'boutsen', NULL, '', 'Thierry', 'Boutsen', '13/07/1957', 'Belgian', 'http://en.wikipedia.org/wiki/Thierry_Boutsen'),
(124, 'apicella', NULL, '', 'Marco', 'Apicella', '07/10/1965', 'Italian', 'http://en.wikipedia.org/wiki/Marco_Apicella'),
(125, 'naspetti', NULL, '', 'Emanuele', 'Naspetti', '24/02/1968', 'Italian', 'http://en.wikipedia.org/wiki/Emanuele_Naspetti'),
(126, 'toshio_suzuki', NULL, '', 'Toshio', 'Suzuki', '10/03/1955', 'Japanese', 'http://en.wikipedia.org/wiki/Toshio_Suzuki_(driver)'),
(127, 'gugelmin', NULL, '', 'MaurÌ_cio', 'Gugelmin', '20/04/1963', 'Brazilian', 'http://en.wikipedia.org/wiki/Maur%C3%ADcio_Gugelmin'),
(128, 'poele', NULL, '', 'Eric', 'van de Poele', '30/09/1961', 'Belgian', 'http://en.wikipedia.org/wiki/Eric_van_de_Poele'),
(129, 'grouillard', NULL, '', 'Olivier', 'Grouillard', '02/09/1958', 'French', 'http://en.wikipedia.org/wiki/Olivier_Grouillard'),
(130, 'chiesa', NULL, '', 'Andrea', 'Chiesa', '06/05/1964', 'Swiss', 'http://en.wikipedia.org/wiki/Andrea_Chiesa'),
(131, 'modena', NULL, '', 'Stefano', 'Modena', '12/05/1963', 'Italian', 'http://en.wikipedia.org/wiki/Stefano_Modena'),
(132, 'amati', NULL, '', 'Giovanna', 'Amati', '20/07/1959', 'Italian', 'http://en.wikipedia.org/wiki/Giovanna_Amati'),
(133, 'caffi', NULL, '', 'Alex', 'Caffi', '18/03/1964', 'Italian', 'http://en.wikipedia.org/wiki/Alex_Caffi'),
(134, 'bertaggia', NULL, '', 'Enrico', 'Bertaggia', '19/09/1964', 'Italian', 'http://en.wikipedia.org/wiki/Enrico_Bertaggia'),
(135, 'mccarthy', NULL, '', 'Perry', 'McCarthy', '03/03/1961', 'British', 'http://en.wikipedia.org/wiki/Perry_McCarthy'),
(136, 'lammers', NULL, '', 'Jan', 'Lammers', '02/06/1956', 'Dutch', 'http://en.wikipedia.org/wiki/Jan_Lammers'),
(137, 'piquet', NULL, '', 'Nelson', 'Piquet', '17/08/1952', 'Brazilian', 'http://en.wikipedia.org/wiki/Nelson_Piquet'),
(138, 'satoru_nakajima', NULL, '', 'Satoru', 'Nakajima', '23/02/1953', 'Japanese', 'http://en.wikipedia.org/wiki/Satoru_Nakajima'),
(139, 'pirro', NULL, '', 'Emanuele', 'Pirro', '12/01/1962', 'Italian', 'http://en.wikipedia.org/wiki/Emanuele_Pirro'),
(140, 'johansson', NULL, '', 'Stefan', 'Johansson', '08/09/1956', 'Swedish', 'http://en.wikipedia.org/wiki/Stefan_Johansson'),
(141, 'bailey', NULL, '', 'Julian', 'Bailey', '09/10/1961', 'British', 'http://en.wikipedia.org/wiki/Julian_Bailey'),
(142, 'chaves', NULL, '', 'Pedro', 'Chaves', '27/02/1965', 'Portuguese', 'http://en.wikipedia.org/wiki/Pedro_Chaves'),
(143, 'bartels', NULL, '', 'Michael', 'Bartels', '08/03/1968', 'German', 'http://en.wikipedia.org/wiki/Michael_Bartels'),
(144, 'hattori', NULL, '', 'Naoki', 'Hattori', '13/06/1966', 'Japanese', 'http://en.wikipedia.org/wiki/Naoki_Hattori'),
(145, 'nannini', NULL, '', 'Alessandro', 'Nannini', '07/07/1959', 'Italian', 'http://en.wikipedia.org/wiki/Alessandro_Nannini'),
(146, 'schneider', NULL, '', 'Bernd', 'Schneider', '20/07/1964', 'German', 'http://en.wikipedia.org/wiki/Bernd_Schneider_(racecar_driver)'),
(147, 'barilla', NULL, '', 'Paolo', 'Barilla', '20/04/1961', 'Italian', 'http://en.wikipedia.org/wiki/Paolo_Barilla'),
(148, 'foitek', NULL, '', 'Gregor', 'Foitek', '27/03/1965', 'Swiss', 'http://en.wikipedia.org/wiki/Gregor_Foitek'),
(149, 'langes', NULL, '', 'Claudio', 'Langes', '20/07/1960', 'Italian', 'http://en.wikipedia.org/wiki/Claudio_Langes'),
(150, 'gary_brabham', NULL, '', 'Gary', 'Brabham', '29/03/1961', 'Australian', 'http://en.wikipedia.org/wiki/Gary_Brabham'),
(151, 'donnelly', NULL, '', 'Martin', 'Donnelly', '26/03/1964', 'British', 'http://en.wikipedia.org/wiki/Martin_Donnelly_(racing_driver)'),
(152, 'giacomelli', NULL, '', 'Bruno', 'Giacomelli', '10/09/1952', 'Italian', 'http://en.wikipedia.org/wiki/Bruno_Giacomelli'),
(153, 'alguersuari', NULL, 'ALG', 'Jaime', 'Alguersuari', '23/03/1990', 'Spanish', 'http://en.wikipedia.org/wiki/Jaime_Alguersuari'),
(154, 'grosjean', '8', 'GRO', 'Romain', 'Grosjean', '17/04/1986', 'French', 'http://en.wikipedia.org/wiki/Romain_Grosjean'),
(155, 'kobayashi', '10', 'KOB', 'Kamui', 'Kobayashi', '13/09/1986', 'Japanese', 'http://en.wikipedia.org/wiki/Kamui_Kobayashi'),
(156, 'palmer', NULL, '', 'Jonathan', 'Palmer', '07/11/1956', 'British', 'http://en.wikipedia.org/wiki/Jonathan_Palmer'),
(157, 'danner', NULL, '', 'Christian', 'Danner', '04/04/1958', 'German', 'http://en.wikipedia.org/wiki/Christian_Danner'),
(158, 'cheever', NULL, '', 'Eddie', 'Cheever', '10/01/1958', 'American', 'http://en.wikipedia.org/wiki/Eddie_Cheever'),
(159, 'sala', NULL, '', 'Luis', 'PÌ©rez-Sala', '15/05/1959', 'Spanish', 'http://en.wikipedia.org/wiki/Luis_Perez-Sala'),
(160, 'ghinzani', NULL, '', 'Piercarlo', 'Ghinzani', '16/01/1952', 'Italian', 'http://en.wikipedia.org/wiki/Piercarlo_Ghinzani'),
(161, 'weidler', NULL, '', 'Volker', 'Weidler', '18/03/1962', 'German', 'http://en.wikipedia.org/wiki/Volker_Weidler'),
(162, 'raphanel', NULL, '', 'Pierre-Henri', 'Raphanel', '27/05/1961', 'French', 'http://en.wikipedia.org/wiki/Pierre-Henri_Raphanel'),
(163, 'arnoux', NULL, '', 'Ren̩', 'Arnoux', '04/07/1948', 'French', 'http://en.wikipedia.org/wiki/Ren%C3%A9_Arnoux'),
(164, 'joachim_winkelhock', NULL, '', 'Joachim', 'Winkelhock', '24/10/1960', 'German', 'http://en.wikipedia.org/wiki/Joachim_Winkelhock'),
(165, 'larrauri', NULL, '', 'Oscar', 'Larrauri', '19/08/1954', 'Argentine', 'http://en.wikipedia.org/wiki/Oscar_Larrauri'),
(166, 'streiff', NULL, '', 'Philippe', 'Streiff', '26/06/1955', 'French', 'http://en.wikipedia.org/wiki/Philippe_Streiff'),
(167, 'campos', NULL, '', 'AdriÌÁn', 'Campos', '17/06/1960', 'Spanish', 'http://en.wikipedia.org/wiki/Adri%C3%A1n_Campos'),
(168, 'schlesser', NULL, '', 'Jean-Louis', 'Schlesser', '12/09/1948', 'French', 'http://en.wikipedia.org/wiki/Jean-Louis_Schlesser'),
(169, 'fabre', NULL, '', 'Pascal', 'Fabre', '09/01/1960', 'French', 'http://en.wikipedia.org/wiki/Pascal_Fabre'),
(170, 'fabi', NULL, '', 'Teo', 'Fabi', '09/03/1955', 'Italian', 'http://en.wikipedia.org/wiki/Teo_Fabi'),
(171, 'forini', NULL, '', 'Franco', 'Forini', '22/09/1958', 'Swiss', 'http://en.wikipedia.org/wiki/Franco_Forini'),
(172, 'laffite', NULL, '', 'Jacques', 'Laffite', '21/11/1943', 'French', 'http://en.wikipedia.org/wiki/Jacques_Laffite'),
(173, 'angelis', NULL, '', 'Elio', 'de Angelis', '26/03/1958', 'Italian', 'http://en.wikipedia.org/wiki/Elio_de_Angelis'),
(174, 'dumfries', NULL, '', 'Johnny', 'Dumfries', '26/04/1958', 'British', 'http://en.wikipedia.org/wiki/Johnny_Dumfries'),
(175, 'tambay', NULL, '', 'Patrick', 'Tambay', '25/06/1949', 'French', 'http://en.wikipedia.org/wiki/Patrick_Tambay'),
(176, 'surer', NULL, '', 'Marc', 'Surer', '18/09/1951', 'Swiss', 'http://en.wikipedia.org/wiki/Marc_Surer'),
(177, 'keke_rosberg', NULL, '', 'Keke', 'Rosberg', '06/12/1948', 'Finnish', 'http://en.wikipedia.org/wiki/Keke_Rosberg'),
(178, 'jones', NULL, '', 'Alan', 'Jones', '02/11/1946', 'Australian', 'http://en.wikipedia.org/wiki/Alan_Jones_(Formula_1)'),
(179, 'rothengatter', NULL, '', 'Huub', 'Rothengatter', '08/10/1954', 'Dutch', 'http://en.wikipedia.org/wiki/Huub_Rothengatter'),
(180, 'berg', NULL, '', 'Allen', 'Berg', '01/08/1961', 'Canadian', 'http://en.wikipedia.org/wiki/Allen_Berg'),
(181, 'manfred_winkelhock', NULL, '', 'Manfred', 'Winkelhock', '06/10/1951', 'German', 'http://en.wikipedia.org/wiki/Manfred_Winkelhock'),
(182, 'lauda', NULL, '', 'Niki', 'Lauda', '22/02/1949', 'Austrian', 'http://en.wikipedia.org/wiki/Niki_Lauda'),
(183, 'hesnault', NULL, '', 'Fran̤ois', 'Hesnault', '30/12/1956', 'French', 'http://en.wikipedia.org/wiki/Fran%C3%A7ois_Hesnault'),
(184, 'baldi', NULL, '', 'Mauro', 'Baldi', '31/01/1954', 'Italian', 'http://en.wikipedia.org/wiki/Mauro_Baldi'),
(185, 'bellof', NULL, '', 'Stefan', 'Bellof', '20/11/1957', 'German', 'http://en.wikipedia.org/wiki/Stefan_Bellof'),
(186, 'acheson', NULL, '', 'Kenny', 'Acheson', '27/11/1957', 'British', 'http://en.wikipedia.org/wiki/Kenny_Acheson'),
(187, 'watson', NULL, '', 'John', 'Watson', '04/05/1946', 'British', 'http://en.wikipedia.org/wiki/John_Watson_(racing_driver)'),
(188, 'cecotto', NULL, '', 'Johnny', 'Cecotto', '25/01/1956', 'Venezuelan', 'http://en.wikipedia.org/wiki/Johnny_Cecotto'),
(189, 'gartner', NULL, '', 'Jo', 'Gartner', '24/01/1954', 'Austrian', 'http://en.wikipedia.org/wiki/Jo_Gartner'),
(190, 'corrado_fabi', NULL, '', 'Corrado', 'Fabi', '12/04/1961', 'Italian', 'http://en.wikipedia.org/wiki/Corrado_Fabi'),
(191, 'thackwell', NULL, '', 'Mike', 'Thackwell', '30/03/1961', 'New Zealander', 'http://en.wikipedia.org/wiki/Mike_Thackwell'),
(192, 'serra', NULL, '', 'Chico', 'Serra', '03/02/1957', 'Brazilian', 'http://en.wikipedia.org/wiki/Chico_Serra'),
(193, 'sullivan', NULL, '', 'Danny', 'Sullivan', '09/03/1950', 'American', 'http://en.wikipedia.org/wiki/Danny_Sullivan'),
(194, 'salazar', NULL, '', 'Eliseo', 'Salazar', '14/11/1954', 'Chilean', 'http://en.wikipedia.org/wiki/Eliseo_Salazar'),
(195, 'guerrero', NULL, '', 'Roberto', 'Guerrero', '16/11/1958', 'Colombian', 'http://en.wikipedia.org/wiki/Roberto_Guerrero'),
(196, 'boesel', NULL, '', 'Raul', 'Boesel', '04/12/1957', 'Brazilian', 'http://en.wikipedia.org/wiki/Raul_Boesel'),
(197, 'jarier', NULL, '', 'Jean-Pierre', 'Jarier', '10/07/1946', 'French', 'http://en.wikipedia.org/wiki/Jean-Pierre_Jarier'),
(198, 'villeneuve_sr', NULL, '', 'Jacques', 'Villeneuve Sr.', '04/11/1953', 'Canadian', 'http://en.wikipedia.org/wiki/Jacques_Villeneuve_(elder)'),
(199, 'reutemann', NULL, '', 'Carlos', 'Reutemann', '12/04/1942', 'Argentine', 'http://en.wikipedia.org/wiki/Carlos_Reutemann'),
(200, 'mass', NULL, '', 'Jochen', 'Mass', '30/09/1946', 'German', 'http://en.wikipedia.org/wiki/Jochen_Mass'),
(201, 'borgudd', NULL, '', 'Slim', 'Borgudd', '25/11/1946', 'Swedish', 'http://en.wikipedia.org/wiki/Slim_Borgudd'),
(202, 'pironi', NULL, '', 'Didier', 'Pironi', '26/03/1952', 'French', 'http://en.wikipedia.org/wiki/Didier_Pironi'),
(203, 'gilles_villeneuve', NULL, '', 'Gilles', 'Villeneuve', '18/01/1950', 'Canadian', 'http://en.wikipedia.org/wiki/Gilles_Villeneuve'),
(204, 'paletti', NULL, '', 'Riccardo', 'Paletti', '15/06/1958', 'Italian', 'http://en.wikipedia.org/wiki/Riccardo_Paletti'),
(205, 'henton', NULL, '', 'Brian', 'Henton', '19/09/1946', 'British', 'http://en.wikipedia.org/wiki/Brian_Henton'),
(206, 'daly', NULL, '', 'Derek', 'Daly', '11/03/1953', 'Irish', 'http://en.wikipedia.org/wiki/Derek_Daly'),
(207, 'mario_andretti', NULL, '', 'Mario', 'Andretti', '28/02/1940', 'American', 'http://en.wikipedia.org/wiki/Mario_Andretti'),
(208, 'villota', NULL, '', 'Emilio', 'de Villota', '26/07/1946', 'Spanish', 'http://en.wikipedia.org/wiki/Emilio_de_Villota'),
(209, 'lees', NULL, '', 'Geoff', 'Lees', '01/05/1951', 'British', 'http://en.wikipedia.org/wiki/Geoff_Lees'),
(210, 'byrne', NULL, '', 'Tommy', 'Byrne', '06/05/1958', 'Irish', 'http://en.wikipedia.org/wiki/Tommy_Byrne_%28racing_driver%29'),
(211, 'keegan', NULL, '', 'Rupert', 'Keegan', '26/02/1955', 'British', 'http://en.wikipedia.org/wiki/Rupert_Keegan'),
(212, 'rebaque', NULL, '', 'Hector', 'Rebaque', '05/02/1956', 'Mexican', 'http://en.wikipedia.org/wiki/Hector_Rebaque'),
(213, 'gabbiani', NULL, '', 'Beppe', 'Gabbiani', '02/01/1957', 'Italian', 'http://en.wikipedia.org/wiki/Beppe_Gabbiani'),
(214, 'cogan', NULL, '', 'Kevin', 'Cogan', '31/03/1956', 'American', 'http://en.wikipedia.org/wiki/Kevin_Cogan'),
(215, 'guerra', NULL, '', 'Miguel Ìngel', 'Guerra', '31/08/1953', 'Argentine', 'http://en.wikipedia.org/wiki/Miguel_Angel_Guerra'),
(216, 'stohr', NULL, '', 'Siegfried', 'Stohr', '10/10/1952', 'Italian', 'http://en.wikipedia.org/wiki/Siegfried_Stohr'),
(217, 'zunino', NULL, '', 'Ricardo', 'Zunino', '13/04/1949', 'Argentine', 'http://en.wikipedia.org/wiki/Ricardo_Zunino'),
(218, 'londono', NULL, '', 'Ricardo', 'Londo̱o', '08/08/1949', 'Colombian', 'http://en.wikipedia.org/wiki/Ricardo_Londo%C3%B1o'),
(219, 'jabouille', NULL, '', 'Jean-Pierre', 'Jabouille', '01/10/1942', 'French', 'http://en.wikipedia.org/wiki/Jean-Pierre_Jabouille'),
(220, 'francia', NULL, '', 'Giorgio', 'Francia', '08/11/1947', 'Italian', 'http://en.wikipedia.org/wiki/Giorgio_Francia'),
(221, 'depailler', NULL, '', 'Patrick', 'Depailler', '09/08/1944', 'French', 'http://en.wikipedia.org/wiki/Patrick_Depailler'),
(222, 'scheckter', NULL, '', 'Jody', 'Scheckter', '29/01/1950', 'South African', 'http://en.wikipedia.org/wiki/Jody_Scheckter'),
(223, 'regazzoni', NULL, '', 'Clay', 'Regazzoni', '05/09/1939', 'Swiss', 'http://en.wikipedia.org/wiki/Clay_Regazzoni'),
(224, 'emerson_fittipaldi', NULL, '', 'Emerson', 'Fittipaldi', '12/12/1946', 'Brazilian', 'http://en.wikipedia.org/wiki/Emerson_Fittipaldi'),
(225, 'kennedy', NULL, '', 'Dave', 'Kennedy', '15/01/1953', 'Irish', 'http://en.wikipedia.org/wiki/David_Kennedy_(racing_driver)'),
(226, 'south', NULL, '', 'Stephen', 'South', '19/02/1952', 'British', 'http://en.wikipedia.org/wiki/Stephen_South'),
(227, 'needell', NULL, '', 'Tiff', 'Needell', '29/10/1951', 'British', 'http://en.wikipedia.org/wiki/Tiff_Needell'),
(228, 'desire_wilson', NULL, '', 'Desir̩', 'Wilson', '26/11/1953', 'South African', 'http://en.wikipedia.org/wiki/Desir%C3%A9_Wilson'),
(229, 'ertl', NULL, '', 'Harald', 'Ertl', '31/08/1948', 'Austrian', 'http://en.wikipedia.org/wiki/Harald_Ertl'),
(230, 'brambilla', NULL, '', 'Vittorio', 'Brambilla', '11/11/1937', 'Italian', 'http://en.wikipedia.org/wiki/Vittorio_Brambilla'),
(231, 'hunt', NULL, '', 'James', 'Hunt', '29/08/1947', 'British', 'http://en.wikipedia.org/wiki/James_Hunt'),
(232, 'merzario', NULL, '', 'Arturo', 'Merzario', '11/03/1943', 'Italian', 'http://en.wikipedia.org/wiki/Arturo_Merzario'),
(233, 'stuck', NULL, '', 'Hans-Joachim', 'Stuck', '01/01/1951', 'German', 'http://en.wikipedia.org/wiki/Hans_Joachim_Stuck'),
(234, 'brancatelli', NULL, '', 'Gianfranco', 'Brancatelli', '18/01/1950', 'Italian', 'http://en.wikipedia.org/wiki/Gianfranco_Brancatelli'),
(235, 'ickx', NULL, '', 'Jacky', 'Ickx', '01/01/1945', 'Belgian', 'http://en.wikipedia.org/wiki/Jacky_Ickx'),
(236, 'gaillard', NULL, '', 'Patrick', 'Gaillard', '12/02/1952', 'French', 'http://en.wikipedia.org/wiki/Patrick_Gaillard'),
(237, 'ribeiro', NULL, '', 'Alex', 'Ribeiro', '07/11/1948', 'Brazilian', 'http://en.wikipedia.org/wiki/Alex_Ribeiro'),
(238, 'peterson', NULL, '', 'Ronnie', 'Peterson', '14/02/1944', 'Swedish', 'http://en.wikipedia.org/wiki/Ronnie_Peterson'),
(239, 'lunger', NULL, '', 'Brett', 'Lunger', '14/11/1945', 'American', 'http://en.wikipedia.org/wiki/Brett_Lunger'),
(240, 'ongais', NULL, '', 'Danny', 'Ongais', '21/05/1942', 'American', 'http://en.wikipedia.org/wiki/Danny_Ongais'),
(241, 'leoni', NULL, '', 'Lamberto', 'Leoni', '24/05/1953', 'Italian', 'http://en.wikipedia.org/wiki/Lamberto_Leoni'),
(242, 'galica', NULL, '', 'Divina', 'Galica', '13/08/1944', 'British', 'http://en.wikipedia.org/wiki/Divina_Galica'),
(243, 'stommelen', NULL, '', 'Rolf', 'Stommelen', '11/07/1943', 'German', 'http://en.wikipedia.org/wiki/Rolf_Stommelen'),
(244, 'colombo', NULL, '', 'Alberto', 'Colombo', '23/02/1946', 'Italian', 'http://en.wikipedia.org/wiki/Alberto_Colombo'),
(245, 'trimmer', NULL, '', 'Tony', 'Trimmer', '24/01/1943', 'British', 'http://en.wikipedia.org/wiki/Tony_Trimmer'),
(246, 'binder', NULL, '', 'Hans', 'Binder', '12/06/1948', 'Austrian', 'http://en.wikipedia.org/wiki/Hans_Binder'),
(247, 'bleekemolen', NULL, '', 'Michael', 'Bleekemolen', '02/10/1949', 'Dutch', 'http://en.wikipedia.org/wiki/Michael_Bleekemolen'),
(248, 'gimax', NULL, '', 'Carlo', 'Franchi', '01/01/1938', 'Italian', 'http://en.wikipedia.org/wiki/Gimax'),
(249, 'rahal', NULL, '', 'Bobby', 'Rahal', '10/01/1953', 'American', 'http://en.wikipedia.org/wiki/Bobby_Rahal'),
(250, 'pace', NULL, '', 'Carlos', 'Pace', '06/10/1944', 'Brazilian', 'http://en.wikipedia.org/wiki/Carlos_Pace'),
(251, 'ian_scheckter', NULL, '', 'Ian', 'Scheckter', '22/08/1947', 'South African', 'http://en.wikipedia.org/wiki/Ian_Scheckter'),
(252, 'pryce', NULL, '', 'Tom', 'Pryce', '11/06/1949', 'British', 'http://en.wikipedia.org/wiki/Tom_Pryce'),
(253, 'hoffmann', NULL, '', 'Ingo', 'Hoffmann', '28/02/1953', 'Brazilian', 'http://en.wikipedia.org/wiki/Ingo_Hoffmann'),
(254, 'zorzi', NULL, '', 'Renzo', 'Zorzi', '12/12/1946', 'Italian', 'http://en.wikipedia.org/wiki/Renzo_Zorzi'),
(255, 'nilsson', NULL, '', 'Gunnar', 'Nilsson', '20/11/1948', 'Swedish', 'http://en.wikipedia.org/wiki/Gunnar_Nilsson'),
(256, 'perkins', NULL, '', 'Larry', 'Perkins', '18/03/1950', 'Australian', 'http://en.wikipedia.org/wiki/Larry_Perkins'),
(257, 'hayje', NULL, '', 'Boy', 'Lunger', '03/05/1949', 'Dutch', 'http://en.wikipedia.org/wiki/Boy_Hayje'),
(258, 'neve', NULL, '', 'Patrick', 'N̬ve', '13/10/1949', 'Belgian', 'http://en.wikipedia.org/wiki/Patrick_Neve'),
(259, 'purley', NULL, '', 'David', 'Purley', '26/01/1945', 'British', 'http://en.wikipedia.org/wiki/David_Purley'),
(260, 'andersson', NULL, '', 'Conny', 'Andersson', '28/12/1939', 'Swedish', 'http://en.wikipedia.org/wiki/Conny_Andersson_(racing_driver)'),
(261, 'dryver', NULL, '', 'Bernard', 'de Dryver', '19/09/1952', 'Belgian', 'http://en.wikipedia.org/wiki/Bernard_de_Dryver'),
(262, 'oliver', NULL, '', 'Jackie', 'Oliver', '14/08/1942', 'British', 'http://en.wikipedia.org/wiki/Jackie_Oliver'),
(263, 'kozarowitzky', NULL, '', 'Mikko', 'Kozarowitzky', '17/05/1948', 'Finnish', 'http://en.wikipedia.org/wiki/Mikko_Kozarowitzky'),
(264, 'sutcliffe', NULL, '', 'Andy', 'Sutcliffe', '09/05/1947', 'British', 'http://en.wikipedia.org/wiki/Andy_Sutcliffe'),
(265, 'edwards', NULL, '', 'Guy', 'Edwards', '30/12/1942', 'British', 'http://en.wikipedia.org/wiki/Guy_Edwards'),
(266, 'mcguire', NULL, '', 'Brian', 'McGuire', '13/12/1945', 'Australian', 'http://en.wikipedia.org/wiki/Brian_McGuire'),
(267, 'schuppan', NULL, '', 'Vern', 'Schuppan', '19/03/1943', 'Australian', 'http://en.wikipedia.org/wiki/Vern_Schuppan'),
(268, 'heyer', NULL, '', 'Hans', 'Heyer', '16/03/1943', 'German', 'http://en.wikipedia.org/wiki/Hans_Heyer'),
(269, 'pilette', NULL, '', 'Teddy', 'Pilette', '26/07/1942', 'Belgian', 'http://en.wikipedia.org/wiki/Teddy_Pilette'),
(270, 'ashley', NULL, '', 'Ian', 'Ashley', '26/10/1947', 'British', 'http://en.wikipedia.org/wiki/Ian_Ashley'),
(271, 'kessel', NULL, '', 'Loris', 'Kessel', '01/04/1950', 'Swiss', 'http://en.wikipedia.org/wiki/Loris_Kessel'),
(272, 'takahashi', NULL, '', 'Kunimitsu', 'Takahashi', '29/01/1940', 'Japanese', 'http://en.wikipedia.org/wiki/Kunimitsu_Takahashi'),
(273, 'hoshino', NULL, '', 'Kazuyoshi', 'Hoshino', '01/07/1947', 'Japanese', 'http://en.wikipedia.org/wiki/Kazuyoshi_Hoshino'),
(274, 'takahara', NULL, '', 'Noritake', 'Takahara', '06/06/1951', 'Japanese', 'http://en.wikipedia.org/wiki/Noritake_Takahara'),
(275, 'lombardi', NULL, '', 'Lella', 'Lombardi', '26/03/1941', 'Italian', 'http://en.wikipedia.org/wiki/Lella_Lombardi'),
(276, 'evans', NULL, '', 'Bob', 'Evans', '11/06/1947', 'British', 'http://en.wikipedia.org/wiki/Bob_Evans_(race_driver)'),
(277, 'leclere', NULL, '', 'Michel', 'Lecl̬re', '18/03/1946', 'French', 'http://en.wikipedia.org/wiki/Michel_Lecl%C3%A8re'),
(278, 'amon', NULL, '', 'Chris', 'Amon', '20/07/1943', 'New Zealander', 'http://en.wikipedia.org/wiki/Chris_Amon'),
(279, 'zapico', NULL, '', 'Emilio', 'Zapico', '27/05/1944', 'Spanish', 'http://en.wikipedia.org/wiki/Emilio_Zapico'),
(280, 'pescarolo', NULL, '', 'Henri', 'Pescarolo', '25/09/1942', 'French', 'http://en.wikipedia.org/wiki/Henri_Pescarolo'),
(281, 'nelleman', NULL, '', 'Jac', 'Nelleman', '19/04/1944', 'Danish', 'http://en.wikipedia.org/wiki/Jac_Nelleman'),
(282, 'magee', NULL, '', 'Damien', 'Magee', '17/11/1945', 'British', 'http://en.wikipedia.org/wiki/Damien_Magee'),
(283, 'wilds', NULL, '', 'Mike', 'Wilds', '07/01/1946', 'British', 'http://en.wikipedia.org/wiki/Mike_Wilds'),
(284, 'pesenti_rossi', NULL, '', 'Alessandro', 'Pesenti-Rossi', '31/08/1942', 'Italian', 'http://en.wikipedia.org/wiki/Alessandro_Pesenti-Rossi'),
(285, 'stuppacher', NULL, '', 'Otto', 'Stuppacher', '03/03/1947', 'Austrian', 'http://en.wikipedia.org/wiki/Otto_Stuppacher'),
(286, 'brown', NULL, '', 'Warwick', 'Brown', '24/12/1949', 'Australian', 'http://en.wikipedia.org/wiki/Warwick_Brown'),
(287, 'hasemi', NULL, '', 'Masahiro', 'Hasemi', '13/11/1945', 'Japanese', 'http://en.wikipedia.org/wiki/Masahiro_Hasemi'),
(288, 'donohue', NULL, '', 'Mark', 'Donohue', '18/03/1937', 'American', 'http://en.wikipedia.org/wiki/Mark_Donohue'),
(289, 'hill', NULL, '', 'Graham', 'Hill', '15/02/1929', 'British', 'http://en.wikipedia.org/wiki/Graham_Hill'),
(290, 'wilson_fittipaldi', NULL, '', 'Wilson', 'Fittipaldi', '25/12/1943', 'Brazilian', 'http://en.wikipedia.org/wiki/Wilson_Fittipaldi'),
(291, 'tunmer', NULL, '', 'Guy', 'Tunmer', '01/12/1948', 'South African', 'http://en.wikipedia.org/wiki/Guy_Tunmer'),
(292, 'keizan', NULL, '', 'Eddie', 'Keizan', '12/09/1944', 'South African', 'http://en.wikipedia.org/wiki/Eddie_Keizan'),
(293, 'charlton', NULL, '', 'Dave', 'Charlton', '27/10/1936', 'South African', 'http://en.wikipedia.org/wiki/Dave_Charlton'),
(294, 'brise', NULL, '', 'Tony', 'Brise', '28/03/1952', 'British', 'http://en.wikipedia.org/wiki/Tony_Brise'),
(295, 'wunderink', NULL, '', 'Roelof', 'Wunderink', '12/12/1948', 'Dutch', 'http://en.wikipedia.org/wiki/Roelof_Wunderink'),
(296, 'migault', NULL, '', 'Fran̤ois', 'Migault', '04/12/1944', 'French', 'http://en.wikipedia.org/wiki/Fran%C3%A7ois_Migault'),
(297, 'palm', NULL, '', 'Torsten', 'Palm', '23/07/1947', 'Swedish', 'http://en.wikipedia.org/wiki/Torsten_Palm'),
(298, 'lennep', NULL, '', 'Gijs', 'van Lennep', '16/03/1942', 'Dutch', 'http://en.wikipedia.org/wiki/Gijs_Van_Lennep'),
(299, 'fushida', NULL, '', 'Hiroshi', 'Fushida', '10/03/1946', 'Japanese', 'http://en.wikipedia.org/wiki/Hiroshi_Fushida'),
(300, 'nicholson', NULL, '', 'John', 'Nicholson', '06/10/1941', 'New Zealander', 'http://en.wikipedia.org/wiki/John_Nicholson_(racing_driver)'),
(301, 'morgan', NULL, '', 'Dave', 'Morgan', '07/08/1944', 'British', 'http://en.wikipedia.org/wiki/Dave_Morgan_(racing_driver)'),
(302, 'crawford', NULL, '', 'Jim', 'Crawford', '13/02/1948', 'British', 'http://en.wikipedia.org/wiki/Jim_Crawford_(driver)'),
(303, 'vonlanthen', NULL, '', 'Jo', 'Vonlanthen', '31/05/1942', 'Swiss', 'http://en.wikipedia.org/wiki/Jo_Vonlanthen'),
(304, 'hulme', NULL, '', 'Denny', 'Hulme', '18/06/1936', 'New Zealander', 'http://en.wikipedia.org/wiki/Denny_Hulme'),
(305, 'hailwood', NULL, '', 'Mike', 'Hailwood', '02/04/1940', 'British', 'http://en.wikipedia.org/wiki/Mike_Hailwood'),
(306, 'beltoise', NULL, '', 'Jean-Pierre', 'Beltoise', '26/04/1937', 'French', 'http://en.wikipedia.org/wiki/Jean-Pierre_Beltoise'),
(307, 'ganley', NULL, '', 'Howden', 'Ganley', '24/12/1941', 'New Zealander', 'http://en.wikipedia.org/wiki/Howden_Ganley'),
(308, 'robarts', NULL, '', 'Richard', 'Robarts', '22/09/1944', 'British', 'http://en.wikipedia.org/wiki/Richard_Robarts'),
(309, 'revson', NULL, '', 'Peter', 'Revson', '27/02/1939', 'American', 'http://en.wikipedia.org/wiki/Peter_Revson'),
(310, 'driver', NULL, '', 'Paddy', 'Driver', '13/05/1934', 'South African', 'http://en.wikipedia.org/wiki/Paddy_Driver'),
(311, 'belso', NULL, '', 'Tom', 'BelsÌü', '27/08/1942', 'Danish', 'http://en.wikipedia.org/wiki/Tom_Bels%C3%B8'),
(312, 'redman', NULL, '', 'Brian', 'Redman', '09/03/1937', 'British', 'http://en.wikipedia.org/wiki/Brian_Redman'),
(313, 'opel', NULL, '', 'Rikky', 'von Opel', '14/10/1947', 'Liechtensteiner', 'http://en.wikipedia.org/wiki/Rikky_von_Opel'),
(314, 'schenken', NULL, '', 'Tim', 'Schenken', '26/09/1943', 'Australian', 'http://en.wikipedia.org/wiki/Tim_Schenken'),
(315, 'larrousse', NULL, '', 'GÌ©rard', 'Larrousse', '23/05/1940', 'French', 'http://en.wikipedia.org/wiki/G%C3%A9rard_Larrousse'),
(316, 'kinnunen', NULL, '', 'Leo', 'Kinnunen', '05/08/1943', 'Finnish', 'http://en.wikipedia.org/wiki/Leo_Kinnunen'),
(317, 'wisell', NULL, '', 'Reine', 'Wisell', '30/09/1941', 'Swedish', 'http://en.wikipedia.org/wiki/Reine_Wisell'),
(318, 'roos', NULL, '', 'Bertil', 'Roos', '12/10/1943', 'Swedish', 'http://en.wikipedia.org/wiki/Bertil_Roos'),
(319, 'dolhem', NULL, '', 'Jos̩', 'Dolhem', '26/04/1944', 'French', 'http://en.wikipedia.org/wiki/Jos%C3%A9_Dolhem'),
(320, 'gethin', NULL, '', 'Peter', 'Gethin', '21/02/1940', 'British', 'http://en.wikipedia.org/wiki/Peter_Gethin'),
(321, 'bell', NULL, '', 'Derek', 'Bell', '31/10/1941', 'British', 'http://en.wikipedia.org/wiki/Derek_Bell_(auto_racer)'),
(322, 'hobbs', NULL, '', 'David', 'Hobbs', '09/06/1939', 'British', 'http://en.wikipedia.org/wiki/David_Hobbs_(racing_driver)'),
(323, 'quester', NULL, '', 'Dieter', 'Quester', '30/05/1939', 'Austrian', 'http://en.wikipedia.org/wiki/Dieter_Quester'),
(324, 'koinigg', NULL, '', 'Helmuth', 'Koinigg', '03/11/1948', 'Austrian', 'http://en.wikipedia.org/wiki/Helmuth_Koinigg'),
(325, 'facetti', NULL, '', 'Carlo', 'Facetti', '26/06/1935', 'Italian', 'http://en.wikipedia.org/wiki/Carlo_Facetti'),
(326, 'wietzes', NULL, '', 'Eppie', 'Wietzes', '28/05/1938', 'Canadian', 'http://en.wikipedia.org/wiki/Eppie_Wietzes'),
(327, 'cevert', NULL, '', 'Fran̤ois', 'Cevert', '25/02/1944', 'French', 'http://en.wikipedia.org/wiki/Fran%C3%A7ois_Cevert'),
(328, 'stewart', NULL, '', 'Jackie', 'Stewart', '11/06/1939', 'British', 'http://en.wikipedia.org/wiki/Jackie_Stewart'),
(329, 'beuttler', NULL, '', 'Mike', 'Beuttler', '13/04/1940', 'British', 'http://en.wikipedia.org/wiki/Mike_Beuttler'),
(330, 'galli', NULL, '', 'Nanni', 'Galli', '02/10/1940', 'Italian', 'http://en.wikipedia.org/wiki/Nanni_Galli'),
(331, 'bueno', NULL, '', 'Luiz', 'Bueno', '16/01/1937', 'Brazilian', 'http://en.wikipedia.org/wiki/Luiz_Bueno'),
(332, 'follmer', NULL, '', 'George', 'Follmer', '27/01/1934', 'American', 'http://en.wikipedia.org/wiki/George_Follmer'),
(333, 'adamich', NULL, '', 'Andrea', 'de Adamich', '03/10/1941', 'Italian', 'http://en.wikipedia.org/wiki/Andrea_de_Adamich'),
(334, 'pretorius', NULL, '', 'Jackie', 'Pretorius', '22/11/1934', 'South African', 'http://en.wikipedia.org/wiki/Jackie_Pretorius'),
(335, 'williamson', NULL, '', 'Roger', 'Williamson', '02/02/1948', 'British', 'http://en.wikipedia.org/wiki/Roger_Williamson'),
(336, 'mcrae', NULL, '', 'Graham', 'McRae', '05/03/1940', 'New Zealander', 'http://en.wikipedia.org/wiki/Graham_McRae'),
(337, 'marko', NULL, '', 'Helmut', 'Marko', '27/04/1943', 'Austrian', 'http://en.wikipedia.org/wiki/Helmut_Marko'),
(338, 'walker', NULL, '', 'David', 'Walker', '10/06/1941', 'Australian', 'http://en.wikipedia.org/wiki/David_Walker_(racing_driver)'),
(339, 'roig', NULL, '', 'Alex', 'Soler-Roig', '29/10/1932', 'Spanish', 'http://en.wikipedia.org/wiki/Alex_Soler-Roig'),
(340, 'love', NULL, '', 'John', 'Love', '07/12/1924', 'Rhodesian', 'http://en.wikipedia.org/wiki/John_Love_(racing_driver)'),
(341, 'surtees', NULL, '', 'John', 'Surtees', '11/02/1934', 'British', 'http://en.wikipedia.org/wiki/John_Surtees'),
(342, 'barber', NULL, '', 'Skip', 'Barber', '16/11/1936', 'American', 'http://en.wikipedia.org/wiki/Skip_Barber'),
(343, 'brack', NULL, '', 'Bill', 'Brack', '26/12/1935', 'Canadian', 'http://en.wikipedia.org/wiki/Bill_Brack'),
(344, 'posey', NULL, '', 'Sam', 'Posey', '26/05/1944', 'American', 'http://en.wikipedia.org/wiki/Sam_Posey'),
(345, 'rodriguez', NULL, '', 'Pedro', 'RodrÌ_guez', '18/01/1940', 'Mexican', 'http://en.wikipedia.org/wiki/Pedro_Rodr%C3%ADguez_(racing_driver)'),
(346, 'siffert', NULL, '', 'Jo', 'Siffert', '07/07/1936', 'Swiss', 'http://en.wikipedia.org/wiki/Jo_Siffert'),
(347, 'bonnier', NULL, '', 'Jo', 'Bonnier', '31/01/1930', 'Swedish', 'http://en.wikipedia.org/wiki/Joakim_Bonnier'),
(348, 'mazet', NULL, '', 'Fran̤ois', 'Mazet', '24/02/1943', 'French', 'http://en.wikipedia.org/wiki/Fran%C3%A7ois_Mazet'),
(349, 'jean', NULL, '', 'Max', 'Jean', '27/07/1943', 'French', 'http://en.wikipedia.org/wiki/Max_Jean'),
(350, 'elford', NULL, '', 'Vic', 'Elford', '10/06/1935', 'British', 'http://en.wikipedia.org/wiki/Vic_Elford'),
(351, 'moser', NULL, '', 'Silvio', 'Moser', '24/04/1941', 'Swiss', 'http://en.wikipedia.org/wiki/Silvio_Moser'),
(352, 'eaton', NULL, '', 'George', 'Eaton', '12/11/1945', 'Canadian', 'http://en.wikipedia.org/wiki/George_Eaton'),
(353, 'lovely', NULL, '', 'Pete', 'Lovely', '11/04/1926', 'American', 'http://en.wikipedia.org/wiki/Pete_Lovely'),
(354, 'craft', NULL, '', 'Chris', 'Craft', '17/11/1939', 'British', 'http://en.wikipedia.org/wiki/Chris_Craft_(racing_driver)'),
(355, 'Cannoc', NULL, '', 'John', 'Cannon', '21/06/1933', 'Canadian', 'http://en.wikipedia.org/wiki/John_Cannon_(auto_racer)'),
(356, 'jack_brabham', NULL, '', 'Jack', 'Brabham', '02/04/1926', 'Australian', 'http://en.wikipedia.org/wiki/Jack_Brabham'),
(357, 'miles', NULL, '', 'John', 'Miles', '14/06/1943', 'British', 'http://en.wikipedia.org/wiki/John_Miles_(auto_racer)'),
(358, 'rindt', NULL, '', 'Jochen', 'Rindt', '18/04/1942', 'Austrian', 'http://en.wikipedia.org/wiki/Jochen_Rindt'),
(359, 'gavin', NULL, '', 'Johnny', 'Servoz-Gavin', '18/01/1942', 'French', 'http://en.wikipedia.org/wiki/Johnny_Servoz-Gavin'),
(360, 'mclaren', NULL, '', 'Bruce', 'McLaren', '30/08/1937', 'New Zealander', 'http://en.wikipedia.org/wiki/Bruce_McLaren'),
(361, 'courage', NULL, '', 'Piers', 'Courage', '27/05/1942', 'British', 'http://en.wikipedia.org/wiki/Piers_Courage'),
(362, 'klerk', NULL, '', 'Peter', 'de Klerk', '16/03/1935', 'South African', 'http://en.wikipedia.org/wiki/Peter_de_Klerk'),
(363, 'giunti', NULL, '', 'Ignazio', 'Giunti', '30/08/1941', 'Italian', 'http://en.wikipedia.org/wiki/Ignazio_Giunti'),
(364, 'gurney', NULL, '', 'Dan', 'Gurney', '13/04/1931', 'American', 'http://en.wikipedia.org/wiki/Dan_Gurney'),
(365, 'hahne', NULL, '', 'Hubert', 'Hahne', '28/03/1935', 'German', 'http://en.wikipedia.org/wiki/Hubert_Hahne'),
(366, 'hutchison', NULL, '', 'Gus', 'Hutchison', '26/04/1937', 'American', 'http://en.wikipedia.org/wiki/Gus_Hutchison'),
(367, 'westbury', NULL, '', 'Peter', 'Westbury', '26/05/1938', 'British', 'http://en.wikipedia.org/wiki/Peter_Westbury'),
(368, 'tingle', NULL, '', 'Sam', 'Tingle', '24/08/1921', 'Rhodesian', 'http://en.wikipedia.org/wiki/Sam_Tingle'),
(369, 'rooyen', NULL, '', 'Basil', 'van Rooyen', '19/04/1939', 'South African', 'http://en.wikipedia.org/wiki/Basil_van_Rooyen'),
(370, 'attwood', NULL, '', 'Richard', 'Attwood', '04/04/1940', 'British', 'http://en.wikipedia.org/wiki/Richard_Attwood'),
(371, 'pease', NULL, '', 'Al', 'Pease', '15/10/1921', 'Canadian', 'http://en.wikipedia.org/wiki/Al_Pease'),
(372, 'cordts', NULL, '', 'John', 'Cordts', '23/07/1935', 'Canadian', 'http://en.wikipedia.org/wiki/John_Cordts'),
(373, 'clark', NULL, '', 'Jim', 'Clark', '04/03/1936', 'British', 'http://en.wikipedia.org/wiki/Jim_Clark'),
(374, 'spence', NULL, '', 'Mike', 'Spence', '30/12/1936', 'British', 'http://en.wikipedia.org/wiki/Mike_Spence'),
(375, 'scarfiotti', NULL, '', 'Ludovico', 'Scarfiotti', '18/10/1933', 'Italian', 'http://en.wikipedia.org/wiki/Ludovico_Scarfiotti'),
(376, 'bianchi', NULL, 'BIA', 'Lucien', 'Bianchi', '10/11/1934', 'Belgian', 'http://en.wikipedia.org/wiki/Lucien_Bianchi'),
(377, 'jo_schlesser', NULL, '', 'Jo', 'Schlesser', '18/05/1928', 'French', 'http://en.wikipedia.org/wiki/Jo_Schlesser'),
(378, 'widdows', NULL, '', 'Robin', 'Widdows', '27/05/1942', 'British', 'http://en.wikipedia.org/wiki/Robin_Widdows'),
(379, 'ahrens', NULL, '', 'Kurt', 'Ahrens', '19/04/1940', 'German', 'http://en.wikipedia.org/wiki/Kurt_Ahrens,_Jr.'),
(380, 'gardner', NULL, '', 'Frank', 'Gardner', '01/10/1930', 'Australian', 'http://en.wikipedia.org/wiki/Frank_Gardner_(driver)'),
(381, 'unser', NULL, '', 'Bobby', 'Unser', '20/02/1934', 'American', 'http://en.wikipedia.org/wiki/Bobby_Unser'),
(382, 'solana', NULL, '', 'Mois̩s', 'Solana', '26/12/1935', 'Mexican', 'http://en.wikipedia.org/wiki/Mois%C3%A9s_Solana'),
(383, 'anderson', NULL, '', 'Bob', 'Anderson', '19/05/1931', 'British', 'http://en.wikipedia.org/wiki/Bob_Anderson_(racing_driver)'),
(384, 'botha', NULL, '', 'Luki', 'Botha', '16/01/1930', 'South African', 'http://en.wikipedia.org/wiki/Luki_Botha'),
(385, 'bandini', NULL, '', 'Lorenzo', 'Bandini', '21/12/1935', 'Italian', 'http://en.wikipedia.org/wiki/Lorenzo_Bandini'),
(386, 'ginther', NULL, '', 'Richie', 'Ginther', '05/08/1930', 'American', 'http://en.wikipedia.org/wiki/Richie_Ginther'),
(387, 'parkes', NULL, '', 'Mike', 'Parkes', '24/09/1931', 'British', 'http://en.wikipedia.org/wiki/Mike_Parkes'),
(388, 'irwin', NULL, '', 'Chris', 'Irwin', '27/06/1942', 'British', 'http://en.wikipedia.org/wiki/Chris_Irwin'),
(389, 'ligier', NULL, '', 'Guy', 'Ligier', '12/07/1930', 'French', 'http://en.wikipedia.org/wiki/Guy_Ligier'),
(390, 'rees', NULL, '', 'Alan', 'Rees', '12/01/1938', 'British', 'http://en.wikipedia.org/wiki/Alan_Rees_(racing_driver)'),
(391, 'hart', NULL, '', 'Brian', 'Hart', '07/09/1936', 'British', 'http://en.wikipedia.org/wiki/Brian_Hart'),
(392, 'fisher', NULL, '', 'Mike', 'Fisher', '13/03/1943', 'American', 'http://en.wikipedia.org/wiki/Mike_Fisher_(driver)'),
(393, 'tom_jones', NULL, '', 'Tom', 'Jones', '26/04/1943', 'American', 'http://en.wikipedia.org/wiki/Tom_Jones_(auto_racer)'),
(394, 'baghetti', NULL, '', 'Giancarlo', 'Baghetti', '25/12/1934', 'Italian', 'http://en.wikipedia.org/wiki/Giancarlo_Baghetti'),
(395, 'williams', NULL, '', 'Jonathan', 'Williams', '26/10/1942', 'British', 'http://en.wikipedia.org/wiki/Jonathan_Williams_(racing_driver)'),
(396, 'bondurant', NULL, '', 'Bob', 'Bondurant', '27/04/1933', 'American', 'http://en.wikipedia.org/wiki/Bob_Bondurant'),
(397, 'arundell', NULL, '', 'Peter', 'Arundell', '08/11/1933', 'British', 'http://en.wikipedia.org/wiki/Peter_Arundell'),
(398, 'vic_wilson', NULL, '', 'Vic', 'Wilson', '14/04/1931', 'British', 'http://en.wikipedia.org/wiki/Vic_Wilson_(motor_racing_driver)'),
(399, 'taylor', NULL, '', 'John', 'Taylor', '23/03/1933', 'British', 'http://en.wikipedia.org/wiki/John_Taylor_(racer)'),
(400, 'lawrence', NULL, '', 'Chris', 'Lawrence', '27/07/1933', 'British', 'http://en.wikipedia.org/wiki/Chris_Lawrence_(racing_driver)'),
(401, 'trevor_taylor', NULL, '', 'Trevor', 'Taylor', '26/12/1936', 'British', 'http://en.wikipedia.org/wiki/Trevor_Taylor'),
(402, 'geki', NULL, '', 'Giacomo', 'Russo', '23/10/1937', 'Italian', 'http://en.wikipedia.org/wiki/Geki_(driver)'),
(403, 'phil_hill', NULL, '', 'Phil', 'Hill', '20/04/1927', 'American', 'http://en.wikipedia.org/wiki/Phil_Hill'),
(404, 'ireland', NULL, '', 'Innes', 'Ireland', '12/06/1930', 'British', 'http://en.wikipedia.org/wiki/Innes_Ireland'),
(405, 'bucknum', NULL, '', 'Ronnie', 'Bucknum', '05/04/1936', 'American', 'http://en.wikipedia.org/wiki/Ronnie_Bucknum'),
(406, 'hawkins', NULL, '', 'Paul', 'Hawkins', '12/10/1937', 'Australian', 'http://en.wikipedia.org/wiki/Paul_Hawkins_(racing_driver)'),
(407, 'prophet', NULL, '', 'David', 'Prophet', '09/10/1937', 'British', 'http://en.wikipedia.org/wiki/David_Prophet'),
(408, 'maggs', NULL, '', 'Tony', 'Maggs', '09/02/1937', 'South African', 'http://en.wikipedia.org/wiki/Tony_Maggs'),
(409, 'blokdyk', NULL, '', 'Trevor', 'Blokdyk', '30/11/1935', 'South African', 'http://en.wikipedia.org/wiki/Trevor_Blokdyk'),
(410, 'lederle', NULL, '', 'Neville', 'Lederle', '25/09/1938', 'South African', 'http://en.wikipedia.org/wiki/Neville_Lederle'),
(411, 'serrurier', NULL, '', 'Doug', 'Serrurier', '09/12/1920', 'South African', 'http://en.wikipedia.org/wiki/Doug_Serrurier'),
(412, 'niemann', NULL, '', 'Brausch', 'Niemann', '07/01/1939', 'South African', 'http://en.wikipedia.org/wiki/Brausch_Niemann'),
(413, 'pieterse', NULL, '', 'Ernie', 'Pieterse', '04/07/1938', 'South African', 'http://en.wikipedia.org/wiki/Ernie_Pieterse');
INSERT INTO `drivers` (`driverId`, `driverRef`, `number`, `code`, `forename`, `surname`, `dob`, `nationality`, `url`) VALUES
(414, 'puzey', NULL, '', 'Clive', 'Puzey', '11/07/1941', 'Rhodesian', 'http://en.wikipedia.org/wiki/Clive_Puzey'),
(415, 'reed', NULL, '', 'Ray', 'Reed', '', 'South African', 'http://en.wikipedia.org/wiki/Ray_Reed'),
(416, 'clapham', NULL, '', 'David', 'Clapham', '18/05/1931', 'South African', 'http://en.wikipedia.org/wiki/David_Clapham'),
(417, 'blignaut', NULL, '', 'Alex', 'Blignaut', '30/11/1932', 'South African', 'http://en.wikipedia.org/wiki/Alex_Blignaut'),
(418, 'gregory', NULL, '', 'Masten', 'Gregory', '29/02/1932', 'American', 'http://en.wikipedia.org/wiki/Masten_Gregory'),
(419, 'rhodes', NULL, '', 'John', 'Rhodes', '18/08/1927', 'British', 'http://en.wikipedia.org/wiki/John_Rhodes_(driver)'),
(420, 'raby', NULL, '', 'Ian', 'Raby', '22/09/1921', 'British', 'http://en.wikipedia.org/wiki/Ian_Raby'),
(421, 'rollinson', NULL, '', 'Alan', 'Rollinson', '15/05/1943', 'British', 'http://en.wikipedia.org/wiki/Alan_Rollinson'),
(422, 'gubby', NULL, '', 'Brian', 'Gubby', '17/04/1934', 'British', 'http://en.wikipedia.org/wiki/Brian_Gubby'),
(423, 'mitter', NULL, '', 'Gerhard', 'Mitter', '30/08/1935', 'German', 'http://en.wikipedia.org/wiki/Gerhard_Mitter'),
(424, 'bussinello', NULL, '', 'Roberto', 'Bussinello', '04/10/1927', 'Italian', 'http://en.wikipedia.org/wiki/Roberto_Bussinello'),
(425, 'vaccarella', NULL, '', 'Nino', 'Vaccarella', '04/03/1933', 'Italian', 'http://en.wikipedia.org/wiki/Nino_Vaccarella'),
(426, 'bassi', NULL, '', 'Giorgio', 'Bassi', '20/01/1934', 'Italian', 'http://en.wikipedia.org/wiki/Giorgio_Bassi'),
(427, 'trintignant', NULL, '', 'Maurice', 'Trintignant', '30/10/1917', 'French', 'http://en.wikipedia.org/wiki/Maurice_Trintignant'),
(428, 'collomb', NULL, '', 'Bernard', 'Collomb', '07/10/1930', 'French', 'http://en.wikipedia.org/wiki/Bernard_Collomb'),
(429, 'andre_pilette', NULL, '', 'Andr̩', 'Pilette', '06/10/1918', 'Belgian', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Pilette'),
(430, 'beaufort', NULL, '', 'Carel Godin', 'de Beaufort', '10/04/1934', 'Dutch', 'http://en.wikipedia.org/wiki/Carel_Godin_de_Beaufort'),
(431, 'barth', NULL, '', 'Edgar', 'Barth', '26/01/1917', 'German', 'http://en.wikipedia.org/wiki/Edgar_Barth'),
(432, 'cabral', NULL, '', 'MÌÁrio de Ara̼jo', 'Cabral', '15/01/1934', 'Portuguese', 'http://en.wikipedia.org/wiki/Mario_de_Araujo_Cabral'),
(433, 'hansgen', NULL, '', 'Walt', 'Hansgen', '28/10/1919', 'American', 'http://en.wikipedia.org/wiki/Walt_Hansgen'),
(434, 'sharp', NULL, '', 'Hap', 'Sharp', '01/01/1928', 'American', 'http://en.wikipedia.org/wiki/Hap_Sharp'),
(435, 'mairesse', NULL, '', 'Willy', 'Mairesse', '01/10/1928', 'Belgian', 'http://en.wikipedia.org/wiki/Willy_Mairesse'),
(436, 'campbell-jones', NULL, '', 'John', 'Campbell-Jones', '21/01/1930', 'British', 'http://en.wikipedia.org/wiki/John_Campbell-Jones'),
(437, 'burgess', NULL, '', 'Ian', 'Burgess', '06/07/1930', 'British', 'http://en.wikipedia.org/wiki/Ian_Burgess'),
(438, 'settember', NULL, '', 'Tony', 'Settember', '10/07/1926', 'American', 'http://en.wikipedia.org/wiki/Tony_Settember'),
(439, 'estefano', NULL, '', 'Nasif', 'Est̩fano', '18/11/1932', 'Argentine', 'http://en.wikipedia.org/wiki/Nasif_Est%C3%A9fano'),
(440, 'hall', NULL, '', 'Jim', 'Hall', '23/07/1935', 'American', 'http://en.wikipedia.org/wiki/Jim_Hall_(race_car_driver)'),
(441, 'parnell', NULL, '', 'Tim', 'Parnell', '25/06/1932', 'British', 'http://en.wikipedia.org/wiki/Tim_Parnell'),
(442, 'kuhnke', NULL, '', 'Kurt', 'Kuhnke', '30/04/1910', 'German', 'http://en.wikipedia.org/wiki/Kurt_Kuhnke'),
(443, 'ernesto_brambilla', NULL, '', 'Ernesto', 'Brambilla', '31/01/1934', 'Italian', 'http://en.wikipedia.org/wiki/Ernesto_Brambilla'),
(444, 'lippi', NULL, '', 'Roberto', 'Lippi', '17/10/1926', 'Italian', 'http://en.wikipedia.org/wiki/Roberto_Lippi'),
(445, 'seiffert', NULL, '', 'GÌ_nther', 'Seiffert', '18/10/1937', 'German', 'http://en.wikipedia.org/wiki/G%C3%BCnther_Seiffert'),
(446, 'abate', NULL, '', 'Carlo', 'Abate', '10/07/1932', 'Italian', 'http://en.wikipedia.org/wiki/Carlo_Mario_Abate'),
(447, 'starrabba', NULL, '', 'Gaetano', 'Starrabba', '03/12/1932', 'Italian', 'http://en.wikipedia.org/wiki/Gaetano_Starrabba'),
(448, 'broeker', NULL, '', 'Peter', 'Broeker', '15/05/1926', 'Canadian', 'http://en.wikipedia.org/wiki/Peter_Broeker'),
(449, 'ward', NULL, '', 'Rodger', 'Ward', '10/01/1921', 'American', 'http://en.wikipedia.org/wiki/Rodger_Ward'),
(450, 'vos', NULL, '', 'Ernie', 'de Vos', '01/07/1941', 'Dutch', 'http://en.wikipedia.org/wiki/Ernie_de_Vos'),
(451, 'dochnal', NULL, '', 'Frank', 'Dochnal', '08/10/1920', 'American', 'http://en.wikipedia.org/wiki/Frank_Dochnal'),
(452, 'monarch', NULL, '', 'Thomas', 'Monarch', '03/09/1945', 'American', NULL),
(453, 'lewis', NULL, '', 'Jackie', 'Lewis', '01/11/1936', 'British', 'http://en.wikipedia.org/wiki/Jackie_Lewis'),
(454, 'ricardo_rodriguez', NULL, '', 'Ricardo', 'RodrÌ_guez', '14/02/1942', 'Mexican', 'http://en.wikipedia.org/wiki/Ricardo_Rodr%C3%ADguez_(Formula_One)'),
(455, 'seidel', NULL, '', 'Wolfgang', 'Seidel', '04/07/1926', 'German', 'http://en.wikipedia.org/wiki/Wolfgang_Seidel'),
(456, 'salvadori', NULL, '', 'Roy', 'Salvadori', '12/05/1922', 'British', 'http://en.wikipedia.org/wiki/Roy_Salvadori'),
(457, 'pon', NULL, '', 'Ben', 'Pon', '09/12/1936', 'Dutch', 'http://en.wikipedia.org/wiki/Ben_Pon'),
(458, 'slotemaker', NULL, '', 'Rob', 'Slotemaker', '13/06/1929', 'Dutch', 'http://en.wikipedia.org/wiki/Rob_Slotemaker'),
(459, 'marsh', NULL, '', 'Tony', 'Marsh', '20/07/1931', 'British', 'http://en.wikipedia.org/wiki/Tony_Marsh_(racing_driver)'),
(460, 'ashmore', NULL, '', 'Gerry', 'Ashmore', '25/07/1936', 'British', 'http://en.wikipedia.org/wiki/Gerry_Ashmore'),
(461, 'schiller', NULL, '', 'Heinz', 'Schiller', '25/01/1930', 'Swiss', 'http://en.wikipedia.org/wiki/Heinz_Schiller'),
(462, 'davis', NULL, '', 'Colin', 'Davis', '29/07/1933', 'British', 'http://en.wikipedia.org/wiki/Colin_Davis_(driver)'),
(463, 'chamberlain', NULL, '', 'Jay', 'Chamberlain', '29/12/1925', 'American', 'http://en.wikipedia.org/wiki/Jay_Chamberlain'),
(464, 'shelly', NULL, '', 'Tony', 'Shelly', '02/02/1937', 'New Zealander', 'http://en.wikipedia.org/wiki/Tony_Shelly'),
(465, 'greene', NULL, '', 'Keith', 'Greene', '05/01/1938', 'British', 'http://en.wikipedia.org/wiki/Keith_Greene'),
(466, 'walter', NULL, '', 'Heini', 'Walter', '28/07/1927', 'Swiss', 'http://en.wikipedia.org/wiki/Heini_Walter'),
(467, 'prinoth', NULL, '', 'Ernesto', 'Prinoth', '15/04/1923', 'Italian', 'http://en.wikipedia.org/wiki/Ernesto_Prinoth'),
(468, 'penske', NULL, '', 'Roger', 'Penske', '20/02/1937', 'American', 'http://en.wikipedia.org/wiki/Roger_Penske'),
(469, 'schroeder', NULL, '', 'Rob', 'Schroeder', '11/05/1926', 'British', 'http://en.wikipedia.org/wiki/Rob_Schroeder'),
(470, 'mayer', NULL, '', 'Timmy', 'Mayer', '22/02/1938', 'American', 'http://en.wikipedia.org/wiki/Timmy_Mayer'),
(471, 'johnstone', NULL, '', 'Bruce', 'Johnstone', '30/01/1937', 'South African', 'http://en.wikipedia.org/wiki/Bruce_Johnstone_(racing_driver)'),
(472, 'harris', NULL, '', 'Mike', 'Harris', '25/05/1939', 'South African', 'http://en.wikipedia.org/wiki/Mike_Harris_(race_car_driver)'),
(473, 'hocking', NULL, '', 'Gary', 'Hocking', '30/09/1937', 'Rhodesian', 'http://en.wikipedia.org/wiki/Gary_Hocking'),
(474, 'vyver', NULL, '', 'Syd', 'van der Vyver', '01/06/1920', 'South African', 'http://en.wikipedia.org/wiki/Syd_van_der_Vyver'),
(475, 'moss', NULL, '', 'Stirling', 'Moss', '17/09/1929', 'British', 'http://en.wikipedia.org/wiki/Stirling_Moss'),
(476, 'trips', NULL, '', 'Wolfgang', 'von Trips', '04/05/1928', 'German', 'http://en.wikipedia.org/wiki/Wolfgang_Graf_Berghe_von_Trips'),
(477, 'allison', NULL, '', 'Cliff', 'Allison', '08/02/1932', 'British', 'http://en.wikipedia.org/wiki/Cliff_Allison'),
(478, 'herrmann', NULL, '', 'Hans', 'Herrmann', '23/02/1928', 'German', 'http://en.wikipedia.org/wiki/Hans_Herrmann'),
(479, 'brooks', NULL, '', 'Tony', 'Brooks', '25/02/1932', 'British', 'http://en.wikipedia.org/wiki/Tony_Brooks'),
(480, 'may', NULL, '', 'Michael', 'May', '18/08/1934', 'Swiss', 'http://en.wikipedia.org/wiki/Michael_May_(racing_driver)'),
(481, 'henry_taylor', NULL, '', 'Henry', 'Taylor', '16/12/1932', 'British', 'http://en.wikipedia.org/wiki/Henry_Taylor_(racing_driver)'),
(482, 'gendebien', NULL, '', 'Olivier', 'Gendebien', '12/01/1924', 'Belgian', 'http://en.wikipedia.org/wiki/Olivier_Gendebien'),
(483, 'scarlatti', NULL, '', 'Giorgio', 'Scarlatti', '02/10/1921', 'Italian', 'http://en.wikipedia.org/wiki/Giorgio_Scarlatti'),
(484, 'naylor', NULL, '', 'Brian', 'Naylor', '24/03/1923', 'British', 'http://en.wikipedia.org/wiki/Brian_Naylor'),
(485, 'bordeu', NULL, '', 'Juan Manuel', 'Bordeu', '28/01/1934', 'Argentine', 'http://en.wikipedia.org/wiki/Juan_Manuel_Bordeu'),
(486, 'fairman', NULL, '', 'Jack', 'Fairman', '15/03/1913', 'British', 'http://en.wikipedia.org/wiki/Jack_Fairman'),
(487, 'natili', NULL, '', 'Massimo', 'Natili', '28/07/1935', 'Italian', 'http://en.wikipedia.org/wiki/Massimo_Natili'),
(488, 'monteverdi', NULL, '', 'Peter', 'Monteverdi', '07/06/1934', 'Swiss', 'http://en.wikipedia.org/wiki/Peter_Monteverdi'),
(489, 'pirocchi', NULL, '', 'Renato', 'Pirocchi', '26/03/1933', 'Italian', 'http://en.wikipedia.org/wiki/Renato_Pirocchi'),
(490, 'duke', NULL, '', 'Geoff', 'Duke', '29/03/1923', 'British', 'http://en.wikipedia.org/wiki/Geoff_Duke'),
(491, 'thiele', NULL, '', 'Alfonso', 'Thiele', '05/04/1920', 'American-Italian', 'http://en.wikipedia.org/wiki/Alfonso_Thiele'),
(492, 'boffa', NULL, '', 'Menato', 'Boffa', '04/01/1930', 'Italian', 'http://en.wikipedia.org/wiki/Menato_Boffa'),
(493, 'ryan', NULL, '', 'Peter', 'Ryan', '10/06/1940', 'Canadian', 'http://en.wikipedia.org/wiki/Peter_Ryan_(driver)'),
(494, 'ruby', NULL, '', 'Lloyd', 'Ruby', '12/01/1928', 'American', 'http://en.wikipedia.org/wiki/Lloyd_Ruby'),
(495, 'ken_miles', NULL, '', 'Ken', 'Miles', '01/11/1918', 'British', 'http://en.wikipedia.org/wiki/Ken_Miles'),
(496, 'menditeguy', NULL, '', 'Carlos', 'Menditeguy', '10/08/1914', 'Argentine', 'http://en.wikipedia.org/wiki/Carlos_Menditeguy'),
(497, 'larreta', NULL, '', 'Alberto Rodriguez', 'Larreta', '14/01/1934', 'Argentine', 'http://en.wikipedia.org/wiki/Alberto_Rodriguez_Larreta'),
(498, 'gonzalez', NULL, '', 'JosÌ© FroilÌÁn', 'GonzÌÁlez', '05/10/1922', 'Argentine', 'http://en.wikipedia.org/wiki/Jos%C3%A9_Froil%C3%A1n_Gonz%C3%A1lez'),
(499, 'bonomi', NULL, '', 'Roberto', 'Bonomi', '30/09/1919', 'Argentine', 'http://en.wikipedia.org/wiki/Roberto_Bonomi'),
(500, 'munaron', NULL, '', 'Gino', 'Munaron', '02/04/1928', 'Italian', 'http://en.wikipedia.org/wiki/Gino_Munaron'),
(501, 'schell', NULL, '', 'Harry', 'Schell', '29/06/1921', 'American', 'http://en.wikipedia.org/wiki/Harry_Schell'),
(502, 'stacey', NULL, '', 'Alan', 'Stacey', '29/08/1933', 'British', 'http://en.wikipedia.org/wiki/Alan_Stacey'),
(503, 'chimeri', NULL, '', 'Ettore', 'Chimeri', '04/06/1921', 'Venezuelan', 'http://en.wikipedia.org/wiki/Ettore_Chimeri'),
(504, 'creus', NULL, '', 'Antonio', 'Creus', '28/10/1924', 'Spanish', 'http://en.wikipedia.org/wiki/Antonio_Creus'),
(505, 'bristow', NULL, '', 'Chris', 'Bristow', '02/12/1937', 'British', 'http://en.wikipedia.org/wiki/Chris_Bristow'),
(506, 'halford', NULL, '', 'Bruce', 'Halford', '18/05/1931', 'British', 'http://en.wikipedia.org/wiki/Bruce_Halford'),
(507, 'daigh', NULL, '', 'Chuck', 'Daigh', '29/11/1923', 'American', 'http://en.wikipedia.org/wiki/Chuck_Daigh'),
(508, 'reventlow', NULL, '', 'Lance', 'Reventlow', '24/02/1936', 'American', 'http://en.wikipedia.org/wiki/Lance_Reventlow'),
(509, 'rathmann', NULL, '', 'Jim', 'Rathmann', '16/07/1928', 'American', 'http://en.wikipedia.org/wiki/Jim_Rathmann'),
(510, 'goldsmith', NULL, '', 'Paul', 'Goldsmith', '02/10/1925', 'American', 'http://en.wikipedia.org/wiki/Paul_Goldsmith'),
(511, 'branson', NULL, '', 'Don', 'Branson', '02/06/1920', 'American', 'http://en.wikipedia.org/wiki/Don_Branson'),
(512, 'thomson', NULL, '', 'Johnny', 'Thomson', '09/04/1922', 'American', 'http://en.wikipedia.org/wiki/Johnny_Thomson'),
(513, 'johnson', NULL, '', 'Eddie', 'Johnson', '10/02/1919', 'American', 'http://en.wikipedia.org/wiki/Eddie_Johnson_(auto_racer)'),
(514, 'veith', NULL, '', 'Bob', 'Veith', '01/11/1926', 'American', 'http://en.wikipedia.org/wiki/Bob_Veith'),
(515, 'tingelstad', NULL, '', 'Bud', 'Tingelstad', '04/04/1928', 'American', 'http://en.wikipedia.org/wiki/Bud_Tingelstad'),
(516, 'christie', NULL, '', 'Bob', 'Christie', '04/04/1924', 'American', 'http://en.wikipedia.org/wiki/Bob_Christie_(racing_driver)'),
(517, 'amick', NULL, '', 'Red', 'Amick', '19/01/1929', 'American', 'http://en.wikipedia.org/wiki/Red_Amick'),
(518, 'darter', NULL, '', 'Duane', 'Carter', '05/05/1913', 'American', 'http://en.wikipedia.org/wiki/Duane_Carter'),
(519, 'homeier', NULL, '', 'Bill', 'Homeier', '31/08/1918', 'American', 'http://en.wikipedia.org/wiki/Bill_Homeier'),
(520, 'hartley', NULL, '', 'Gene', 'Hartley', '28/01/1926', 'American', 'http://en.wikipedia.org/wiki/Gene_Hartley'),
(521, 'stevenson', NULL, '', 'Chuck', 'Stevenson', '15/10/1919', 'American', 'http://en.wikipedia.org/wiki/Chuck_Stevenson'),
(522, 'grim', NULL, '', 'Bobby', 'Grim', '04/09/1924', 'American', 'http://en.wikipedia.org/wiki/Bobby_Grim'),
(523, 'templeman', NULL, '', 'Shorty', 'Templeman', '12/08/1919', 'American', 'http://en.wikipedia.org/wiki/Shorty_Templeman'),
(524, 'hurtubise', NULL, '', 'Jim', 'Hurtubise', '05/12/1932', 'American', 'http://en.wikipedia.org/wiki/Jim_Hurtubise'),
(525, 'bryan', NULL, '', 'Jimmy', 'Bryan', '28/01/1926', 'American', 'http://en.wikipedia.org/wiki/Jimmy_Bryan'),
(526, 'ruttman', NULL, '', 'Troy', 'Ruttman', '11/03/1930', 'American', 'http://en.wikipedia.org/wiki/Troy_Ruttman'),
(527, 'sachs', NULL, '', 'Eddie', 'Sachs', '28/05/1927', 'American', 'http://en.wikipedia.org/wiki/Eddie_Sachs'),
(528, 'freeland', NULL, '', 'Don', 'Freeland', '25/03/1925', 'American', 'http://en.wikipedia.org/wiki/Don_Freeland'),
(529, 'bettenhausen', NULL, '', 'Tony', 'Bettenhausen', '12/09/1916', 'American', 'http://en.wikipedia.org/wiki/Tony_Bettenhausen'),
(530, 'weiler', NULL, '', 'Wayne', 'Weiler', '09/12/1934', 'American', 'http://en.wikipedia.org/wiki/Wayne_Weiler'),
(531, 'foyt', NULL, '', 'Anthony', 'Foyt', '16/01/1935', 'American', 'http://en.wikipedia.org/wiki/A.J._Foyt'),
(532, 'russo', NULL, '', 'Eddie', 'Russo', '19/11/1925', 'American', 'http://en.wikipedia.org/wiki/Eddie_Russo'),
(533, 'boyd', NULL, '', 'Johnny', 'Boyd', '19/08/1926', 'American', 'http://en.wikipedia.org/wiki/Johnny_Boyd'),
(534, 'force', NULL, '', 'Gene', 'Force', '15/06/1916', 'American', 'http://en.wikipedia.org/wiki/Gene_Force'),
(535, 'mcwithey', NULL, '', 'Jim', 'McWithey', '04/07/1927', 'American', 'http://en.wikipedia.org/wiki/Jim_McWithey'),
(536, 'sutton', NULL, '', 'Len', 'Sutton', '09/08/1925', 'American', 'http://en.wikipedia.org/wiki/Len_Sutton'),
(537, 'dick_rathmann', NULL, '', 'Dick', 'Rathmann', '06/01/1924', 'American', 'http://en.wikipedia.org/wiki/Dick_Rathmann'),
(538, 'herman', NULL, '', 'Al', 'Herman', '15/03/1927', 'American', 'http://en.wikipedia.org/wiki/Al_Herman'),
(539, 'dempsey_wilson', NULL, '', 'Dempsey', 'Wilson', '11/03/1927', 'American', 'http://en.wikipedia.org/wiki/Dempsey_Wilson'),
(540, 'mike_taylor', NULL, '', 'Mike', 'Taylor', '24/04/1934', 'British', 'http://en.wikipedia.org/wiki/Mike_Taylor_(driver)'),
(541, 'flockhart', NULL, '', 'Ron', 'Flockhart', '16/06/1923', 'British', 'http://en.wikipedia.org/wiki/Ron_Flockhart_(auto_racing)'),
(542, 'piper', NULL, '', 'David', 'Piper', '02/12/1930', 'British', 'http://en.wikipedia.org/wiki/David_Piper'),
(543, 'cabianca', NULL, '', 'Giulio', 'Cabianca', '19/02/1923', 'Italian', 'http://en.wikipedia.org/wiki/Giulio_Cabianca'),
(544, 'drogo', NULL, '', 'Piero', 'Drogo', '08/08/1926', 'Italian', 'http://en.wikipedia.org/wiki/Piero_Drogo'),
(545, 'gamble', NULL, '', 'Fred', 'Gamble', '17/03/1932', 'American', 'http://en.wikipedia.org/wiki/Fred_Gamble_(racing_driver)'),
(546, 'owen', NULL, '', 'Arthur', 'Owen', '23/03/1915', 'British', 'http://en.wikipedia.org/wiki/Arthur_Owen'),
(547, 'gould', NULL, '', 'Horace', 'Gould', '20/09/1918', 'British', 'http://en.wikipedia.org/wiki/Horace_Gould'),
(548, 'drake', NULL, '', 'Bob', 'Drake', '14/12/1919', 'American', 'http://en.wikipedia.org/wiki/Bob_Drake_(Formula_One)'),
(549, 'bueb', NULL, '', 'Ivor', 'Bueb', '06/06/1923', 'British', 'http://en.wikipedia.org/wiki/Ivor_Bueb'),
(550, 'Changy', NULL, '', 'Alain', 'de Changy', '05/02/1922', 'Belgian', 'http://en.wikipedia.org/wiki/Alain_de_Changy'),
(551, 'filippis', NULL, '', 'Maria', 'de Filippis', '11/11/1926', 'Italian', 'http://en.wikipedia.org/wiki/Maria_Teresa_de_Filippis'),
(552, 'lucienbonnet', NULL, '', 'Jean', 'Lucienbonnet', '07/01/1923', 'French', 'http://en.wikipedia.org/wiki/Jean_Lucienbonnet'),
(553, 'testut', NULL, '', 'Andr̩', 'Testut', '13/04/1926', 'Monegasque', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Testut'),
(554, 'behra', NULL, '', 'Jean', 'Behra', '16/02/1921', 'French', 'http://en.wikipedia.org/wiki/Jean_Behra'),
(555, 'paul_russo', NULL, '', 'Paul', 'Russo', '10/04/1914', 'American', 'http://en.wikipedia.org/wiki/Paul_Russo'),
(556, 'daywalt', NULL, '', 'Jimmy', 'Daywalt', '28/08/1924', 'American', 'http://en.wikipedia.org/wiki/Jimmy_Daywalt'),
(557, 'arnold', NULL, '', 'Chuck', 'Arnold', '30/05/1926', 'American', 'http://en.wikipedia.org/wiki/Chuck_Arnold'),
(558, 'keller', NULL, '', 'Al', 'Keller', '11/04/1920', 'American', 'http://en.wikipedia.org/wiki/Al_Keller'),
(559, 'flaherty', NULL, '', 'Pat', 'Flaherty', '06/01/1926', 'American', 'http://en.wikipedia.org/wiki/Pat_Flaherty_(racing_driver)'),
(560, 'cheesbourg', NULL, '', 'Bill', 'Cheesbourg', '12/06/1927', 'American', 'http://en.wikipedia.org/wiki/Bill_Cheesbourg'),
(561, 'ray_crawford', NULL, '', 'Ray', 'Crawford', '26/10/1915', 'American', 'http://en.wikipedia.org/wiki/Ray_Crawford'),
(562, 'turner', NULL, '', 'Jack', 'Turner', '12/02/1920', 'American', 'http://en.wikipedia.org/wiki/Jack_Turner_(driver)'),
(563, 'weyant', NULL, '', 'Chuck', 'Weyant', '03/04/1923', 'American', 'http://en.wikipedia.org/wiki/Chuck_Weyant'),
(564, 'larson', NULL, '', 'Jud', 'Larson', '21/01/1923', 'American', 'http://en.wikipedia.org/wiki/Jud_Larson'),
(565, 'magill', NULL, '', 'Mike', 'Magill', '08/02/1920', 'American', 'http://en.wikipedia.org/wiki/Mike_Magill'),
(566, 'shelby', NULL, '', 'Carroll', 'Shelby', '11/01/1923', 'American', 'http://en.wikipedia.org/wiki/Carroll_Shelby'),
(567, 'orey', NULL, '', 'Fritz', 'd\'Orey', '25/03/1938', 'Brazilian', 'http://en.wikipedia.org/wiki/Fritz_d%27Orey'),
(568, 'fontes', NULL, '', 'Azdrubal', 'Fontes', '26/12/1922', 'Uruguayan', 'http://en.wikipedia.org/wiki/Azdrubal_Fontes'),
(569, 'ashdown', NULL, '', 'Peter', 'Ashdown', '16/10/1934', 'British', 'http://en.wikipedia.org/wiki/Peter_Ashdown'),
(570, 'bill_moss', NULL, '', 'Bill', 'Moss', '04/09/1933', 'British', 'http://en.wikipedia.org/wiki/Bill_Moss_(racing_driver)'),
(571, 'dennis_taylor', NULL, '', 'Dennis', 'Taylor', '12/06/1921', 'British', 'http://en.wikipedia.org/wiki/Dennis_Taylor_(racing_driver)'),
(572, 'blanchard', NULL, '', 'Harry', 'Blanchard', '13/06/1929', 'American', 'http://en.wikipedia.org/wiki/Harry_Blanchard'),
(573, 'tomaso', NULL, '', 'Alessandro', 'de Tomaso', '10/07/1928', 'Argentine-Italian', 'http://en.wikipedia.org/wiki/Alessandro_de_Tomaso'),
(574, 'constantine', NULL, '', 'George', 'Constantine', '22/02/1918', 'American', 'http://en.wikipedia.org/wiki/George_Constantine'),
(575, 'said', NULL, '', 'Bob', 'Said', '05/05/1932', 'American', 'http://en.wikipedia.org/wiki/Bob_Said'),
(576, 'cade', NULL, '', 'Phil', 'Cade', '12/06/1916', 'American', 'http://en.wikipedia.org/wiki/Phil_Cade'),
(577, 'musso', NULL, '', 'Luigi', 'Musso', '28/07/1924', 'Italian', 'http://en.wikipedia.org/wiki/Luigi_Musso'),
(578, 'hawthorn', NULL, '', 'Mike', 'Hawthorn', '10/04/1929', 'British', 'http://en.wikipedia.org/wiki/Mike_Hawthorn'),
(579, 'fangio', NULL, '', 'Juan', 'Fangio', '24/06/1911', 'Argentine', 'http://en.wikipedia.org/wiki/Juan_Manuel_Fangio'),
(580, 'godia', NULL, '', 'Paco', 'Godia', '21/03/1921', 'Spanish', 'http://en.wikipedia.org/wiki/Paco_Godia'),
(581, 'collins', NULL, '', 'Peter', 'Collins', '06/11/1931', 'British', 'http://en.wikipedia.org/wiki/Peter_Collins_(racing_driver)'),
(582, 'kavanagh', NULL, '', 'Ken', 'Kavanagh', '12/12/1923', 'Australian', 'http://en.wikipedia.org/wiki/Ken_Kavanagh'),
(583, 'gerini', NULL, '', 'Gerino', 'Gerini', '10/08/1928', 'Italian', 'http://en.wikipedia.org/wiki/Gerino_Gerini_(racing_driver)'),
(584, 'kessler', NULL, '', 'Bruce', 'Kessler', '23/03/1936', 'American', 'http://en.wikipedia.org/wiki/Bruce_Kessler'),
(585, 'emery', NULL, '', 'Paul', 'Emery', '12/11/1916', 'British', 'http://en.wikipedia.org/wiki/Paul_Emery'),
(586, 'piotti', NULL, '', 'Luigi', 'Piotti', '27/10/1913', 'Italian', 'http://en.wikipedia.org/wiki/Luigi_Piotti'),
(587, 'ecclestone', NULL, '', 'Bernie', 'Ecclestone', '28/10/1930', 'British', 'http://en.wikipedia.org/wiki/Bernie_Ecclestone'),
(588, 'taramazzo', NULL, '', 'Luigi', 'Taramazzo', '05/05/1932', 'Italian', 'http://en.wikipedia.org/wiki/Luigi_Taramazzo'),
(589, 'chiron', NULL, '', 'Louis', 'Chiron', '1899-08-03', 'Monegasque', 'http://en.wikipedia.org/wiki/Louis_Chiron'),
(590, 'lewis-evans', NULL, '', 'Stuart', 'Lewis-Evans', '20/04/1930', 'British', 'http://en.wikipedia.org/wiki/Stuart_Lewis-Evans'),
(591, 'george_amick', NULL, '', 'George', 'Amick', '24/10/1924', 'American', 'http://en.wikipedia.org/wiki/George_Amick'),
(592, 'reece', NULL, '', 'Jimmy', 'Reece', '17/11/1929', 'American', 'http://en.wikipedia.org/wiki/Jimmy_Reece'),
(593, 'parsons', NULL, '', 'Johnnie', 'Parsons', '04/07/1918', 'American', 'http://en.wikipedia.org/wiki/Johnnie_Parsons'),
(594, 'tolan', NULL, '', 'Johnnie', 'Tolan', '22/10/1917', 'American', 'http://en.wikipedia.org/wiki/Johnnie_Tolan'),
(595, 'garrett', NULL, '', 'Billy', 'Garrett', '24/04/1933', 'American', 'http://en.wikipedia.org/wiki/Billy_Garrett'),
(596, 'elisian', NULL, '', 'Ed', 'Elisian', '09/12/1926', 'American', 'http://en.wikipedia.org/wiki/Ed_Elisian'),
(597, 'connor', NULL, '', 'Pat', 'O\'Connor', '09/10/1928', 'American', 'http://en.wikipedia.org/wiki/Pat_O%27Connor_(auto_racer)'),
(598, 'jerry_unser', NULL, '', 'Jerry', 'Unser', '15/11/1932', 'American', 'http://en.wikipedia.org/wiki/Jerry_Unser'),
(599, 'bisch', NULL, '', 'Art', 'Bisch', '10/11/1926', 'American', 'http://en.wikipedia.org/wiki/Art_Bisch'),
(600, 'goethals', NULL, '', 'Christian', 'Goethals', '04/08/1928', 'Belgian', 'http://en.wikipedia.org/wiki/Christian_Goethals'),
(601, 'gibson', NULL, '', 'Dick', 'Gibson', '16/04/1918', 'British', 'http://en.wikipedia.org/wiki/Dick_Gibson'),
(602, 'la_caze', NULL, '', 'Robert', 'La Caze', '26/02/1917', 'French', 'http://en.wikipedia.org/wiki/Robert_La_Caze'),
(603, 'guelfi', NULL, '', 'Andr̩', 'Guelfi', '06/05/1919', 'French', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Guelfi'),
(604, 'picard', NULL, '', 'Fran̤ois', 'Picard', '26/04/1921', 'French', 'http://en.wikipedia.org/wiki/Fran%C3%A7ois_Picard'),
(605, 'bridger', NULL, '', 'Tom', 'Bridger', '24/06/1934', 'British', 'http://en.wikipedia.org/wiki/Tom_Bridger'),
(606, 'portago', NULL, '', 'Alfonso', 'de Portago', '11/10/1928', 'Spanish', 'http://en.wikipedia.org/wiki/Alfonso_de_Portago'),
(607, 'perdisa', NULL, '', 'Cesare', 'Perdisa', '21/10/1932', 'Italian', 'http://en.wikipedia.org/wiki/Cesare_Perdisa'),
(608, 'castellotti', NULL, '', 'Eugenio', 'Castellotti', '10/10/1930', 'Italian', 'http://en.wikipedia.org/wiki/Eugenio_Castellotti'),
(609, 'simon', NULL, '', 'Andr̩', 'Simon', '05/01/1920', 'French', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Simon_(racing_driver)'),
(610, 'leston', NULL, '', 'Les', 'Leston', '16/12/1920', 'British', 'http://en.wikipedia.org/wiki/Les_Leston'),
(611, 'hanks', NULL, '', 'Sam', 'Hanks', '13/07/1914', 'American', 'http://en.wikipedia.org/wiki/Sam_Hanks'),
(612, 'linden', NULL, '', 'Andy', 'Linden', '05/04/1922', 'American', 'http://en.wikipedia.org/wiki/Andy_Linden_(racing_driver)'),
(613, 'teague', NULL, '', 'Marshall', 'Teague', '22/02/1921', 'American', 'http://en.wikipedia.org/wiki/Marshall_Teague'),
(614, 'edmunds', NULL, '', 'Don', 'Edmunds', '23/09/1930', 'American', 'http://en.wikipedia.org/wiki/Don_Edmunds'),
(615, 'agabashian', NULL, '', 'Fred', 'Agabashian', '21/08/1913', 'American', 'http://en.wikipedia.org/wiki/Fred_Agabashian'),
(616, 'george', NULL, '', 'Elmer', 'George', '15/07/1928', 'American', 'http://en.wikipedia.org/wiki/Elmer_George'),
(617, 'macdowel', NULL, '', 'Mike', 'MacDowel', '13/09/1932', 'British', 'http://en.wikipedia.org/wiki/Mike_MacDowel'),
(618, 'mackay-fraser', NULL, '', 'Herbert', 'MacKay-Fraser', '23/06/1927', 'American', 'http://en.wikipedia.org/wiki/Herbert_MacKay-Fraser'),
(619, 'gerard', NULL, '', 'Bob', 'Gerard', '19/01/1914', 'British', 'http://en.wikipedia.org/wiki/Bob_Gerard'),
(620, 'maglioli', NULL, '', 'Umberto', 'Maglioli', '05/06/1928', 'Italian', 'http://en.wikipedia.org/wiki/Umberto_Maglioli'),
(621, 'england', NULL, '', 'Paul', 'England', '28/03/1929', 'Australian', 'http://en.wikipedia.org/wiki/Paul_England'),
(622, 'landi', NULL, '', 'Chico', 'Landi', '14/07/1907', 'Brazilian', 'http://en.wikipedia.org/wiki/Chico_Landi'),
(623, 'uria', NULL, '', 'Alberto', 'Uria', '11/07/1924', 'Uruguayan', 'http://en.wikipedia.org/wiki/Alberto_Uria'),
(624, 'ramos', NULL, '', 'Hernando', 'da Silva Ramos', '07/12/1925', 'Brazilian', 'http://en.wikipedia.org/wiki/Hernando_da_Silva_Ramos'),
(625, 'bayol', NULL, '', 'Ìälie', 'Bayol', '28/02/1914', 'French', 'http://en.wikipedia.org/wiki/%C3%89lie_Bayol'),
(626, 'manzon', NULL, '', 'Robert', 'Manzon', '12/04/1917', 'French', 'http://en.wikipedia.org/wiki/Robert_Manzon'),
(627, 'rosier', NULL, '', 'Louis', 'Rosier', '05/11/1905', 'French', 'http://en.wikipedia.org/wiki/Louis_Rosier'),
(628, 'sweikert', NULL, '', 'Bob', 'Sweikert', '20/05/1926', 'American', 'http://en.wikipedia.org/wiki/Bob_Sweikert'),
(629, 'griffith', NULL, '', 'Cliff', 'Griffith', '06/02/1916', 'American', 'http://en.wikipedia.org/wiki/Cliff_Griffith'),
(630, 'dinsmore', NULL, '', 'Duke', 'Dinsmore', '10/04/1913', 'American', 'http://en.wikipedia.org/wiki/Duke_Dinsmore'),
(631, 'andrews', NULL, '', 'Keith', 'Andrews', '15/06/1920', 'American', 'http://en.wikipedia.org/wiki/Keith_Andrews_(driver)'),
(632, 'frere', NULL, '', 'Paul', 'Fr̬re', '30/01/1917', 'Belgian', 'http://en.wikipedia.org/wiki/Paul_Fr%C3%A8re'),
(633, 'villoresi', NULL, '', 'Luigi', 'Villoresi', '16/05/1909', 'Italian', 'http://en.wikipedia.org/wiki/Luigi_Villoresi'),
(634, 'scotti', NULL, '', 'Piero', 'Scotti', '11/11/1909', 'Italian', 'http://en.wikipedia.org/wiki/Piero_Scotti'),
(635, 'chapman', NULL, '', 'Colin', 'Chapman', '19/05/1928', 'British', 'http://en.wikipedia.org/wiki/Colin_Chapman'),
(636, 'titterington', NULL, '', 'Desmond', 'Titterington', '01/05/1928', 'British', 'http://en.wikipedia.org/wiki/Desmond_Titterington'),
(637, 'scott_Brown', NULL, '', 'Archie', 'Scott Brown', '13/05/1927', 'British', 'http://en.wikipedia.org/wiki/Archie_Scott_Brown'),
(638, 'volonterio', NULL, '', 'Ottorino', 'Volonterio', '07/12/1917', 'Swiss', 'http://en.wikipedia.org/wiki/Ottorino_Volonterio'),
(639, 'milhoux', NULL, '', 'Andr̩', 'Milhoux', '09/12/1928', 'Belgian', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Milhoux'),
(640, 'graffenried', NULL, '', 'Toulo', 'de Graffenried', '18/05/1914', 'Swiss', 'http://en.wikipedia.org/wiki/Toulo_de_Graffenried'),
(641, 'taruffi', NULL, '', 'Piero', 'Taruffi', '12/10/1906', 'Italian', 'http://en.wikipedia.org/wiki/Piero_Taruffi'),
(642, 'farina', NULL, '', 'Nino', 'Farina', '30/10/1906', 'Italian', 'http://en.wikipedia.org/wiki/Nino_Farina'),
(643, 'mieres', NULL, '', 'Roberto', 'Mieres', '03/12/1924', 'Argentine', 'http://en.wikipedia.org/wiki/Roberto_Mieres'),
(644, 'mantovani', NULL, '', 'Sergio', 'Mantovani', '22/05/1929', 'Italian', 'http://en.wikipedia.org/wiki/Sergio_Mantovani'),
(645, 'bucci', NULL, '', 'Clemar', 'Bucci', '04/09/1920', 'Argentine', 'http://en.wikipedia.org/wiki/Clemar_Bucci'),
(646, 'iglesias', NULL, '', 'Jes̼s', 'Iglesias', '22/02/1922', 'Argentine', 'http://en.wikipedia.org/wiki/Jes%C3%BAs_Iglesias'),
(647, 'ascari', NULL, '', 'Alberto', 'Ascari', '13/07/1918', 'Italian', 'http://en.wikipedia.org/wiki/Alberto_Ascari'),
(648, 'kling', NULL, '', 'Karl', 'Kling', '16/09/1910', 'German', 'http://en.wikipedia.org/wiki/Karl_Kling'),
(649, 'birger', NULL, '', 'Pablo', 'Birger', '07/01/1924', 'Argentine', 'http://en.wikipedia.org/wiki/Pablo_Birger'),
(650, 'pollet', NULL, '', 'Jacques', 'Pollet', '02/07/1922', 'French', 'http://en.wikipedia.org/wiki/Jacques_Pollet'),
(651, 'macklin', NULL, '', 'Lance', 'Macklin', '02/09/1919', 'British', 'http://en.wikipedia.org/wiki/Lance_Macklin'),
(652, 'whiteaway', NULL, '', 'Ted', 'Whiteaway', '01/11/1928', 'British', 'http://en.wikipedia.org/wiki/Ted_Whiteaway'),
(653, 'davies', NULL, '', 'Jimmy', 'Davies', '08/08/1929', 'American', 'http://en.wikipedia.org/wiki/Jimmy_Davies'),
(654, 'faulkner', NULL, '', 'Walt', 'Faulkner', '16/02/1920', 'American', 'http://en.wikipedia.org/wiki/Walt_Faulkner'),
(655, 'niday', NULL, '', 'Cal', 'Niday', '29/04/1914', 'American', 'http://en.wikipedia.org/wiki/Cal_Niday'),
(656, 'cross', NULL, '', 'Art', 'Cross', '24/01/1918', 'American', 'http://en.wikipedia.org/wiki/Art_Cross'),
(657, 'vukovich', NULL, '', 'Bill', 'Vukovich', '13/12/1918', 'American', 'http://en.wikipedia.org/wiki/Bill_Vukovich'),
(658, 'mcgrath', NULL, '', 'Jack', 'McGrath', '08/10/1919', 'American', 'http://en.wikipedia.org/wiki/Jack_McGrath_(racing_driver)'),
(659, 'hoyt', NULL, '', 'Jerry', 'Hoyt', '29/01/1929', 'American', 'http://en.wikipedia.org/wiki/Jerry_Hoyt'),
(660, 'claes', NULL, '', 'Johnny', 'Claes', '11/08/1916', 'Belgian', 'http://en.wikipedia.org/wiki/Johnny_Claes'),
(661, 'peter_walker', NULL, '', 'Peter', 'Walker', '07/10/1912', 'British', 'http://en.wikipedia.org/wiki/Peter_Walker_(driver)'),
(662, 'sparken', NULL, '', 'Mike', 'Sparken', '16/06/1930', 'French', 'http://en.wikipedia.org/wiki/Mike_Sparken'),
(663, 'wharton', NULL, '', 'Ken', 'Wharton', '21/03/1916', 'British', 'http://en.wikipedia.org/wiki/Ken_Wharton'),
(664, 'mcalpine', NULL, '', 'Kenneth', 'McAlpine', '21/09/1920', 'British', 'http://en.wikipedia.org/wiki/Kenneth_McAlpine'),
(665, 'marr', NULL, '', 'Leslie', 'Marr', '14/08/1922', 'British', 'http://en.wikipedia.org/wiki/Leslie_Marr'),
(666, 'rolt', NULL, '', 'Tony', 'Rolt', '16/10/1918', 'British', 'http://en.wikipedia.org/wiki/Tony_Rolt'),
(667, 'fitch', NULL, '', 'John', 'Fitch', '04/08/1917', 'American', 'http://en.wikipedia.org/wiki/John_Fitch_(driver)'),
(668, 'lucas', NULL, '', 'Jean', 'Lucas', '25/04/1917', 'French', 'http://en.wikipedia.org/wiki/Jean_Lucas'),
(669, 'bira', NULL, '', 'Prince', 'Bira', '15/07/1914', 'Thai', 'http://en.wikipedia.org/wiki/Prince_Bira'),
(670, 'marimon', NULL, '', 'Onofre', 'MarimÌ_n', '19/12/1923', 'Argentine', 'http://en.wikipedia.org/wiki/Onofre_Marim%C3%B3n'),
(671, 'loyer', NULL, '', 'Roger', 'Loyer', '05/08/1907', 'French', 'http://en.wikipedia.org/wiki/Roger_Loyer'),
(672, 'daponte', NULL, '', 'Jorge', 'Daponte', '05/06/1923', 'Argentine', 'http://en.wikipedia.org/wiki/Jorge_Daponte'),
(673, 'nazaruk', NULL, '', 'Mike', 'Nazaruk', '02/10/1921', 'American', 'http://en.wikipedia.org/wiki/Mike_Nazaruk'),
(674, 'crockett', NULL, '', 'Larry', 'Crockett', '23/10/1926', 'American', 'http://en.wikipedia.org/wiki/Larry_Crockett'),
(675, 'ayulo', NULL, '', 'Manny', 'Ayulo', '20/10/1921', 'American', 'http://en.wikipedia.org/wiki/Manny_Ayulo'),
(676, 'armi', NULL, '', 'Frank', 'Armi', '12/10/1918', 'American', 'http://en.wikipedia.org/wiki/Frank_Armi'),
(677, 'webb', NULL, '', 'Travis', 'Webb', '08/10/1910', 'American', 'http://en.wikipedia.org/wiki/Travis_Webb'),
(678, 'duncan', NULL, '', 'Len', 'Duncan', '25/07/1911', 'American', 'http://en.wikipedia.org/wiki/Len_Duncan'),
(679, 'mccoy', NULL, '', 'Ernie', 'McCoy', '19/02/1921', 'American', 'http://en.wikipedia.org/wiki/Ernie_McCoy'),
(680, 'swaters', NULL, '', 'Jacques', 'Swaters', '30/10/1926', 'American', 'http://en.wikipedia.org/wiki/Jacques_Swaters'),
(681, 'georges_berger', NULL, '', 'Georges', 'Berger', '14/09/1918', 'Belgian', 'http://en.wikipedia.org/wiki/Georges_Berger'),
(682, 'beauman', NULL, '', 'Don', 'Beauman', '26/07/1928', 'British', 'http://en.wikipedia.org/wiki/Don_Beauman'),
(683, 'thorne', NULL, '', 'Leslie', 'Thorne', '23/06/1916', 'British', 'http://en.wikipedia.org/wiki/Leslie_Thorne'),
(684, 'whitehouse', NULL, '', 'Bill', 'Whitehouse', '01/04/1909', 'British', 'http://en.wikipedia.org/wiki/Bill_Whitehouse'),
(685, 'riseley_prichard', NULL, '', 'John', 'Riseley-Prichard', '17/01/1924', 'British', 'http://en.wikipedia.org/wiki/John_Riseley-Prichard'),
(686, 'reg_parnell', NULL, '', 'Reg', 'Parnell', '02/07/1911', 'British', 'http://en.wikipedia.org/wiki/Reg_Parnell'),
(687, 'whitehead', NULL, '', 'Peter', 'Whitehead', '12/11/1914', 'British', 'http://en.wikipedia.org/wiki/Peter_Whitehead_(racing_driver)'),
(688, 'brandon', NULL, '', 'Eric', 'Brandon', '18/07/1920', 'British', 'http://en.wikipedia.org/wiki/Eric_Brandon'),
(689, 'alan_brown', NULL, '', 'Alan', 'Brown', '20/11/1919', 'British', 'http://en.wikipedia.org/wiki/Alan_Brown_(racing_driver)'),
(690, 'nuckey', NULL, '', 'Rodney', 'Nuckey', '26/06/1929', 'British', 'http://en.wikipedia.org/wiki/Rodney_Nuckey'),
(691, 'lang', NULL, '', 'Hermann', 'Lang', '06/04/1909', 'German', 'http://en.wikipedia.org/wiki/Hermann_Lang'),
(692, 'helfrich', NULL, '', 'Theo', 'Helfrich', '13/05/1913', 'German', 'http://en.wikipedia.org/wiki/Theo_Helfrich'),
(693, 'wacker', NULL, '', 'Fred', 'Wacker', '10/07/1918', 'American', 'http://en.wikipedia.org/wiki/Fred_Wacker'),
(694, 'riu', NULL, '', 'Giovanni', 'de Riu', '10/03/1925', 'Italian', 'http://en.wikipedia.org/wiki/Giovanni_de_Riu'),
(695, 'galvez', NULL, '', 'Oscar', 'GÌÁlvez', '17/08/1913', 'Argentine', 'http://en.wikipedia.org/wiki/%C3%93scar_Alfredo_G%C3%A1lvez'),
(696, 'john_barber', NULL, '', 'John', 'Barber', '22/07/1929', 'British', 'http://en.wikipedia.org/wiki/John_Barber_(racing_driver)'),
(697, 'bonetto', NULL, '', 'Felice', 'Bonetto', '09/06/1903', 'Italian', 'http://en.wikipedia.org/wiki/Felice_Bonetto'),
(698, 'cruz', NULL, '', 'Adolfo', 'Cruz', '28/06/1923', 'Argentine', 'http://en.wikipedia.org/wiki/Adolfo_Schewelm_Cruz'),
(699, 'nalon', NULL, '', 'Duke', 'Nalon', '02/03/1913', 'American', 'http://en.wikipedia.org/wiki/Duke_Nalon'),
(700, 'scarborough', NULL, '', 'Carl', 'Scarborough', '03/07/1914', 'American', 'http://en.wikipedia.org/wiki/Carl_Scarborough'),
(701, 'holland', NULL, '', 'Bill', 'Holland', '18/12/1907', 'American', 'http://en.wikipedia.org/wiki/Bill_Holland'),
(702, 'bob_scott', NULL, '', 'Bob', 'Scott', '04/10/1928', 'American', 'http://en.wikipedia.org/wiki/Bob_Scott_(auto_racer)'),
(703, 'legat', NULL, '', 'Arthur', 'Legat', '1898-11-01', 'Belgian', 'http://en.wikipedia.org/wiki/Arthur_Legat'),
(704, 'cabantous', NULL, '', 'Yves', 'Cabantous', '08/10/1904', 'French', 'http://en.wikipedia.org/wiki/Yves_Giraud_Cabantous'),
(705, 'crook', NULL, '', 'Tony', 'Crook', '16/02/1920', 'British', 'http://en.wikipedia.org/wiki/Tony_Crook'),
(706, 'jimmy_stewart', NULL, '', 'Jimmy', 'Stewart', '06/03/1931', 'British', 'http://en.wikipedia.org/wiki/Jimmy_Stewart_(racing_driver)'),
(707, 'ian_stewart', NULL, '', 'Ian', 'Stewart', '15/07/1929', 'British', 'http://en.wikipedia.org/wiki/Ian_Stewart_(racing_driver)'),
(708, 'duncan_hamilton', NULL, '', 'Duncan', 'Hamilton', '30/04/1920', 'British', 'http://en.wikipedia.org/wiki/Duncan_Hamilton_(racing_driver)'),
(709, 'klodwig', NULL, '', 'Ernst', 'Klodwig', '23/05/1903', 'East German', 'http://en.wikipedia.org/wiki/Ernst_Klodwig'),
(710, 'krause', NULL, '', 'Rudolf', 'Krause', '30/03/1907', 'East German', 'http://en.wikipedia.org/wiki/Rudolf_Krause'),
(711, 'karch', NULL, '', 'Oswald', 'Karch', '06/03/1917', 'German', 'http://en.wikipedia.org/wiki/Oswald_Karch'),
(712, 'heeks', NULL, '', 'Willi', 'Heeks', '13/02/1922', 'German', 'http://en.wikipedia.org/wiki/Willi_Heeks'),
(713, 'fitzau', NULL, '', 'Theo', 'Fitzau', '10/02/1923', 'East German', 'http://en.wikipedia.org/wiki/Theo_Fitzau'),
(714, 'adolff', NULL, '', 'Kurt', 'Adolff', '05/11/1921', 'German', 'http://en.wikipedia.org/wiki/Kurt_Adolff'),
(715, 'bechem', NULL, '', 'GÌ_nther', 'Bechem', '21/12/1921', 'German', 'http://en.wikipedia.org/wiki/G%C3%BCnther_Bechem'),
(716, 'bauer', NULL, '', 'Erwin', 'Bauer', '17/07/1912', 'German', 'http://en.wikipedia.org/wiki/Erwin_Bauer'),
(717, 'hans_stuck', NULL, '', 'Hans', 'von Stuck', '27/12/1900', 'German', 'http://en.wikipedia.org/wiki/Hans_Von_Stuck'),
(718, 'loof', NULL, '', 'Ernst', 'Loof', '04/07/1907', 'German', 'http://en.wikipedia.org/wiki/Ernst_Loof'),
(719, 'scherrer', NULL, '', 'Albert', 'Scherrer', '28/02/1908', 'Swiss', 'http://en.wikipedia.org/wiki/Albert_Scherrer'),
(720, 'terra', NULL, '', 'Max', 'de Terra', '06/10/1918', 'Swiss', 'http://en.wikipedia.org/wiki/Max_de_Terra'),
(721, 'hirt', NULL, '', 'Peter', 'Hirt', '30/03/1910', 'Swiss', 'http://en.wikipedia.org/wiki/Peter_Hirt'),
(722, 'carini', NULL, '', 'Piero', 'Carini', '06/03/1921', 'Italian', 'http://en.wikipedia.org/wiki/Piero_Carini'),
(723, 'fischer', NULL, '', 'Rudi', 'Fischer', '19/04/1912', 'Swiss', 'http://en.wikipedia.org/wiki/Rudi_Fischer'),
(724, 'ulmen', NULL, '', 'Toni', 'Ulmen', '25/01/1906', 'German', 'http://en.wikipedia.org/wiki/Toni_Ulmen'),
(725, 'abecassis', NULL, '', 'George', 'Abecassis', '21/03/1913', 'British', 'http://en.wikipedia.org/wiki/George_Abecassis'),
(726, 'george_connor', NULL, '', 'George', 'Connor', '16/08/1906', 'American', 'http://en.wikipedia.org/wiki/George_Connor_(driver)'),
(727, 'rigsby', NULL, '', 'Jim', 'Rigsby', '06/06/1923', 'American', 'http://en.wikipedia.org/wiki/Jim_Rigsby'),
(728, 'james', NULL, '', 'Joe', 'James', '23/05/1925', 'American', 'http://en.wikipedia.org/wiki/Joe_James_(racing_driver)'),
(729, 'schindler', NULL, '', 'Bill', 'Schindler', '06/03/1909', 'American', 'http://en.wikipedia.org/wiki/Bill_Schindler'),
(730, 'fonder', NULL, '', 'George', 'Fonder', '22/06/1917', 'American', 'http://en.wikipedia.org/wiki/George_Fonder'),
(731, 'banks', NULL, '', 'Henry', 'Banks', '14/06/1913', 'American', 'http://en.wikipedia.org/wiki/Henry_Banks'),
(732, 'mcdowell', NULL, '', 'Johnny', 'McDowell', '29/01/1915', 'American', 'http://en.wikipedia.org/wiki/Johnny_McDowell'),
(733, 'miller', NULL, '', 'Chet', 'Miller', '19/07/1902', 'American', 'http://en.wikipedia.org/wiki/Chet_Miller'),
(734, 'ball', NULL, '', 'Bobby', 'Ball', '26/08/1925', 'American', 'http://en.wikipedia.org/wiki/Bobby_Ball_(auto_racer)'),
(735, 'tornaco', NULL, '', 'Charles', 'de Tornaco', '07/06/1927', 'Belgian', 'http://en.wikipedia.org/wiki/Charles_de_Tornaco'),
(736, 'laurent', NULL, '', 'Roger', 'Laurent', '21/02/1913', 'Belgian', 'http://en.wikipedia.org/wiki/Roger_Laurent'),
(737, 'obrien', NULL, '', 'Robert', 'O\'Brien', '11/04/1908', 'American', 'http://en.wikipedia.org/wiki/Robert_O%27Brien_(auto_racer)'),
(738, 'gaze', NULL, '', 'Tony', 'Gaze', '03/02/1920', 'Australian', 'http://en.wikipedia.org/wiki/Tony_Gaze'),
(739, 'charrington', NULL, '', 'Robin', 'Montgomerie-Charrington', '23/06/1915', 'British', 'http://en.wikipedia.org/wiki/Robin_Montgomerie-Charrington'),
(740, 'comotti', NULL, '', 'Franco', 'Comotti', '24/07/1906', 'Italian', 'http://en.wikipedia.org/wiki/Franco_Comotti'),
(741, 'etancelin', NULL, '', 'Philippe', 'Ìätancelin', '1896-12-28', 'French', 'http://en.wikipedia.org/wiki/Philippe_%C3%89tancelin'),
(742, 'poore', NULL, '', 'Dennis', 'Poore', '19/08/1916', 'British', 'http://en.wikipedia.org/wiki/Dennis_Poore'),
(743, 'thompson', NULL, '', 'Eric', 'Thompson', '04/11/1919', 'British', 'http://en.wikipedia.org/wiki/Eric_Thompson_(racing_driver)'),
(744, 'downing', NULL, '', 'Ken', 'Downing', '05/12/1917', 'British', 'http://en.wikipedia.org/wiki/Ken_Downing'),
(745, 'graham_whitehead', NULL, '', 'Graham', 'Whitehead', '15/04/1922', 'British', 'http://en.wikipedia.org/wiki/Graham_Whitehead'),
(746, 'bianco', NULL, '', 'Gino', 'Bianco', '22/07/1916', 'Brazilian', 'http://en.wikipedia.org/wiki/Gino_Bianco'),
(747, 'murray', NULL, '', 'David', 'Murray', '28/12/1909', 'British', 'http://en.wikipedia.org/wiki/David_Murray_(driver)'),
(748, 'cantoni', NULL, '', 'Eitel', 'Cantoni', '04/10/1906', 'Uruguayan', 'http://en.wikipedia.org/wiki/Eitel_Cantoni'),
(749, 'aston', NULL, '', 'Bill', 'Aston', '29/03/1900', 'British', 'http://en.wikipedia.org/wiki/Bill_Aston'),
(750, 'brudes', NULL, '', 'Adolf', 'Brudes', '1899-10-15', 'German', 'http://en.wikipedia.org/wiki/Adolf_Brudes'),
(751, 'riess', NULL, '', 'Fritz', 'Riess', '11/07/1922', 'German', 'http://en.wikipedia.org/wiki/Fritz_Riess'),
(752, 'niedermayr', NULL, '', 'Helmut', 'Niedermayr', '29/11/1915', 'German', 'http://en.wikipedia.org/wiki/Helmut_Niedermayr'),
(753, 'klenk', NULL, '', 'Hans', 'Klenk', '28/10/1919', 'German', 'http://en.wikipedia.org/wiki/Hans_Klenk'),
(754, 'balsa', NULL, '', 'Marcel', 'Balsa', '01/01/1909', 'French', 'http://en.wikipedia.org/wiki/Marcel_Balsa'),
(755, 'schoeller', NULL, '', 'Rudolf', 'Schoeller', '27/04/1902', 'Swiss', 'http://en.wikipedia.org/wiki/Rudolf_Schoeller'),
(756, 'pietsch', NULL, '', 'Paul', 'Pietsch', '20/06/1911', 'German', 'http://en.wikipedia.org/wiki/Paul_Pietsch'),
(757, 'peters', NULL, '', 'Josef', 'Peters', '16/09/1914', 'German', 'http://en.wikipedia.org/wiki/Josef_Peters_(driver)'),
(758, 'lof', NULL, '', 'Dries', 'van der Lof', '23/08/1919', 'Dutch', 'http://en.wikipedia.org/wiki/Dries_van_der_Lof'),
(759, 'flinterman', NULL, '', 'Jan', 'Flinterman', '02/10/1919', 'Dutch', 'http://en.wikipedia.org/wiki/Jan_Flinterman'),
(760, 'dusio', NULL, '', 'Piero', 'Dusio', '1899-10-13', 'Italian', 'http://en.wikipedia.org/wiki/Piero_Dusio'),
(761, 'crespo', NULL, '', 'Alberto', 'Crespo', '16/01/1920', 'Argentine', 'http://en.wikipedia.org/wiki/Alberto_Crespo'),
(762, 'rol', NULL, '', 'Franco', 'Rol', '05/06/1908', 'Italian', 'http://en.wikipedia.org/wiki/Franco_Rol'),
(763, 'sanesi', NULL, '', 'Consalvo', 'Sanesi', '28/03/1911', 'Italian', 'http://en.wikipedia.org/wiki/Consalvo_Sanesi'),
(764, 'guy_mairesse', NULL, '', 'Guy', 'Mairesse', '10/08/1910', 'French', 'http://en.wikipedia.org/wiki/Guy_Mairesse'),
(765, 'louveau', NULL, '', 'Henri', 'Louveau', '25/01/1910', 'French', 'http://en.wikipedia.org/wiki/Henri_Louveau'),
(766, 'wallard', NULL, '', 'Lee', 'Wallard', '07/09/1910', 'American', 'http://en.wikipedia.org/wiki/Lee_Wallard'),
(767, 'forberg', NULL, '', 'Carl', 'Forberg', '04/03/1911', 'American', 'http://en.wikipedia.org/wiki/Carl_Forberg'),
(768, 'rose', NULL, '', 'Mauri', 'Rose', '26/05/1906', 'American', 'http://en.wikipedia.org/wiki/Mauri_Rose'),
(769, 'mackey', NULL, '', 'Bill', 'Mackey', '15/12/1927', 'American', 'http://en.wikipedia.org/wiki/Bill_Mackey'),
(770, 'green', NULL, '', 'Cecil', 'Green', '30/09/1919', 'American', 'http://en.wikipedia.org/wiki/Cecil_Green'),
(771, 'walt_brown', NULL, '', 'Walt', 'Brown', '30/12/1911', 'American', 'http://en.wikipedia.org/wiki/Walt_Brown_(auto_racer)'),
(772, 'hellings', NULL, '', 'Mack', 'Hellings', '14/09/1915', 'American', 'http://en.wikipedia.org/wiki/Mack_Hellings'),
(773, 'levegh', NULL, '', 'Pierre', 'Levegh', '22/12/1905', 'French', 'http://en.wikipedia.org/wiki/Pierre_Levegh'),
(774, 'chaboud', NULL, '', 'Eug̬ne', 'Chaboud', '12/04/1907', 'French', 'http://en.wikipedia.org/wiki/Eug%C3%A8ne_Chaboud'),
(775, 'gordini', NULL, '', 'Aldo', 'Gordini', '20/05/1921', 'French', 'http://en.wikipedia.org/wiki/Aldo_Gordini'),
(776, 'kelly', NULL, '', 'Joe', 'Kelly', '13/03/1913', 'Irish', 'http://en.wikipedia.org/wiki/Joe_Kelly_(Formula_One)'),
(777, 'parker', NULL, '', 'Philip', 'Fotheringham-Parker', '22/09/1907', 'British', 'http://en.wikipedia.org/wiki/Philip_Fotheringham-Parker'),
(778, 'shawe_taylor', NULL, '', 'Brian', 'Shawe Taylor', '28/01/1915', 'British', 'http://en.wikipedia.org/wiki/Brian_Shawe_Taylor'),
(779, 'john_james', NULL, '', 'John', 'James', '10/05/1914', 'British', 'http://en.wikipedia.org/wiki/John_James_(auto_racer)'),
(780, 'branca', NULL, '', 'Toni', 'Branca', '15/09/1916', 'Swiss', 'http://en.wikipedia.org/wiki/Toni_Branca'),
(781, 'richardson', NULL, '', 'Ken', 'Richardson', '21/08/1911', 'British', 'http://en.wikipedia.org/wiki/Ken_Richardson_(race_car_driver)'),
(782, 'jover', NULL, '', 'Juan', 'Jover', '23/11/1903', 'Spanish', 'http://en.wikipedia.org/wiki/Juan_Jover'),
(783, 'grignard', NULL, '', 'Georges', 'Grignard', '25/07/1905', 'French', 'http://en.wikipedia.org/wiki/Georges_Grignard'),
(784, 'hampshire', NULL, '', 'David', 'Hampshire', '29/12/1917', 'British', 'http://en.wikipedia.org/wiki/David_Hampshire'),
(785, 'crossley', NULL, '', 'Geoff', 'Crossley', '11/05/1921', 'British', 'http://en.wikipedia.org/wiki/Geoff_Crossley'),
(786, 'fagioli', NULL, '', 'Luigi', 'Fagioli', '1898-06-09', 'Italian', 'http://en.wikipedia.org/wiki/Luigi_Fagioli'),
(787, 'harrison', NULL, '', 'Cuth', 'Harrison', '06/07/1906', 'British', 'http://en.wikipedia.org/wiki/Cuth_Harrison'),
(788, 'fry', NULL, '', 'Joe', 'Fry', '26/10/1915', 'British', 'http://en.wikipedia.org/wiki/Joe_Fry'),
(789, 'martin', NULL, '', 'Eug̬ne', 'Martin', '24/03/1915', 'French', 'http://en.wikipedia.org/wiki/Eug%C3%A8ne_Martin'),
(790, 'leslie_johnson', NULL, '', 'Leslie', 'Johnson', '22/03/1912', 'British', 'http://en.wikipedia.org/wiki/Leslie_Johnson_(racing_driver)'),
(791, 'biondetti', NULL, '', 'Clemente', 'Biondetti', '1898-08-18', 'Italian', 'http://en.wikipedia.org/wiki/Clemente_Biondetti'),
(792, 'pian', NULL, '', 'Alfredo', 'PiÌÁn', '21/10/1912', 'Argentine', 'http://en.wikipedia.org/wiki/Alfredo_Pi%C3%A0n'),
(793, 'sommer', NULL, '', 'Raymond', 'Sommer', '31/08/1906', 'French', 'http://en.wikipedia.org/wiki/Raymond_Sommer'),
(794, 'chitwood', NULL, '', 'Joie', 'Chitwood', '14/04/1912', 'American', 'http://en.wikipedia.org/wiki/Joie_Chitwood'),
(795, 'fohr', NULL, '', 'Myron', 'Fohr', '17/06/1912', 'American', 'http://en.wikipedia.org/wiki/Myron_Fohr'),
(796, 'ader', NULL, '', 'Walt', 'Ader', '15/12/1913', 'American', 'http://en.wikipedia.org/wiki/Walt_Ader'),
(797, 'holmes', NULL, '', 'Jackie', 'Holmes', '04/09/1920', 'American', 'http://en.wikipedia.org/wiki/Jackie_Holmes'),
(798, 'levrett', NULL, '', 'Bayliss', 'Levrett', '14/02/1914', 'American', 'http://en.wikipedia.org/wiki/Bayliss_Levrett'),
(799, 'jackson', NULL, '', 'Jimmy', 'Jackson', '25/07/1910', 'American', 'http://en.wikipedia.org/wiki/Jimmy_Jackson_(driver)'),
(800, 'pagani', NULL, '', 'Nello', 'Pagani', '11/10/1911', 'Italian', 'http://en.wikipedia.org/wiki/Nello_Pagani'),
(801, 'pozzi', NULL, '', 'Charles', 'Pozzi', '27/08/1909', 'French', 'http://en.wikipedia.org/wiki/Charles_Pozzi'),
(802, 'serafini', NULL, '', 'Dorino', 'Serafini', '22/07/1909', 'Italian', 'http://en.wikipedia.org/wiki/Dorino_Serafini'),
(803, 'cantrell', NULL, '', 'Bill', 'Cantrell', '31/01/1908', 'American', 'http://en.wikipedia.org/wiki/William_Cantrell'),
(804, 'mantz', NULL, '', 'Johnny', 'Mantz', '18/09/1918', 'American', 'http://en.wikipedia.org/wiki/Johnny_Mantz'),
(805, 'kladis', NULL, '', 'Danny', 'Kladis', '10/02/1917', 'American', 'http://en.wikipedia.org/wiki/Danny_Kladis'),
(806, 'oscar_gonzalez', NULL, '', 'ÌÒscar', 'GonzÌÁlez', '10/11/1923', 'Uruguayan', 'http://en.wikipedia.org/wiki/Oscar_Gonz%C3%A1lez_(racing_driver)'),
(807, 'hulkenberg', '27', 'HUL', 'Nico', 'HÌ_lkenberg', '19/08/1987', 'German', 'http://en.wikipedia.org/wiki/Nico_H%C3%BClkenberg'),
(808, 'petrov', NULL, 'PET', 'Vitaly', 'Petrov', '08/09/1984', 'Russian', 'http://en.wikipedia.org/wiki/Vitaly_Petrov'),
(810, 'grassi', NULL, 'DIG', 'Lucas', 'di Grassi', '11/08/1984', 'Brazilian', 'http://en.wikipedia.org/wiki/Lucas_di_Grassi'),
(811, 'bruno_senna', NULL, 'SEN', 'Bruno', 'Senna', '15/10/1983', 'Brazilian', 'http://en.wikipedia.org/wiki/Bruno_Senna'),
(812, 'chandhok', NULL, 'CHA', 'Karun', 'Chandhok', '19/01/1984', 'Indian', 'http://en.wikipedia.org/wiki/Karun_Chandhok'),
(813, 'maldonado', '13', 'MAL', 'Pastor', 'Maldonado', '09/03/1985', 'Venezuelan', 'http://en.wikipedia.org/wiki/Pastor_Maldonado'),
(814, 'resta', NULL, 'DIR', 'Paul', 'di Resta', '16/04/1986', 'British', 'http://en.wikipedia.org/wiki/Paul_di_Resta'),
(815, 'perez', '11', 'PER', 'Sergio', 'PÌ©rez', '26/01/1990', 'Mexican', 'http://en.wikipedia.org/wiki/Sergio_P%C3%A9rez'),
(816, 'ambrosio', NULL, 'DAM', 'J̩r̫me', 'd\'Ambrosio', '27/12/1985', 'Belgian', 'http://en.wikipedia.org/wiki/J%C3%A9r%C3%B4me_d%27Ambrosio'),
(817, 'ricciardo', '3', 'RIC', 'Daniel', 'Ricciardo', '01/07/1989', 'Australian', 'http://en.wikipedia.org/wiki/Daniel_Ricciardo'),
(818, 'vergne', '25', 'VER', 'Jean-Ìäric', 'Vergne', '25/04/1990', 'French', 'http://en.wikipedia.org/wiki/Jean-%C3%89ric_Vergne'),
(819, 'pic', NULL, 'PIC', 'Charles', 'Pic', '15/02/1990', 'French', 'http://en.wikipedia.org/wiki/Charles_Pic'),
(820, 'chilton', '4', 'CHI', 'Max', 'Chilton', '21/04/1991', 'British', 'http://en.wikipedia.org/wiki/Max_Chilton'),
(821, 'gutierrez', '21', 'GUT', 'Esteban', 'Guti̩rrez', '05/08/1991', 'Mexican', 'http://en.wikipedia.org/wiki/Esteban_Guti%C3%A9rrez'),
(822, 'bottas', '77', 'BOT', 'Valtteri', 'Bottas', '28/08/1989', 'Finnish', 'http://en.wikipedia.org/wiki/Valtteri_Bottas'),
(823, 'garde', NULL, 'VDG', 'Giedo', 'van der Garde', '25/04/1985', 'Dutch', 'http://en.wikipedia.org/wiki/Giedo_van_der_Garde'),
(824, 'jules_bianchi', '17', 'BIA', 'Jules', 'Bianchi', '03/08/1989', 'French', 'http://en.wikipedia.org/wiki/Jules_Bianchi'),
(825, 'kevin_magnussen', '20', 'MAG', 'Kevin', 'Magnussen', '05/10/1992', 'Danish', 'http://en.wikipedia.org/wiki/Kevin_Magnussen'),
(826, 'kvyat', '26', 'KVY', 'Daniil', 'Kvyat', '26/04/1994', 'Russian', 'http://en.wikipedia.org/wiki/Daniil_Kvyat'),
(827, 'lotterer', '45', 'LOT', 'Andr̩', 'Lotterer', '19/11/1981', 'German', 'http://en.wikipedia.org/wiki/Andr%C3%A9_Lotterer'),
(828, 'ericsson', '9', 'ERI', 'Marcus', 'Ericsson', '02/09/1990', 'Swedish', 'http://en.wikipedia.org/wiki/Marcus_Ericsson'),
(829, 'stevens', '28', 'STE', 'Will', 'Stevens', '28/06/1991', 'British', 'http://en.wikipedia.org/wiki/Will_Stevens'),
(830, 'max_verstappen', '33', 'VER', 'Max', 'Verstappen', '30/09/1997', 'Dutch', 'http://en.wikipedia.org/wiki/Max_Verstappen');
INSERT INTO `drivers` (`driverId`, `driverRef`, `number`, `code`, `forename`, `surname`, `dob`, `nationality`, `url`) VALUES
(831, 'nasr', '12', 'NAS', 'Felipe', 'Nasr', '21/08/1992', 'Brazilian', 'http://en.wikipedia.org/wiki/Felipe_Nasr'),
(832, 'sainz', '55', 'SAI', 'Carlos', 'Sainz', '01/09/1994', 'Spanish', 'http://en.wikipedia.org/wiki/Carlos_Sainz_Jr.'),
(833, 'merhi', '98', 'MER', 'Roberto', 'Merhi', '22/03/1991', 'Spanish', 'http://en.wikipedia.org/wiki/Roberto_Merhi'),
(834, 'rossi', '53', 'RSS', 'Alexander', 'Rossi', '25/09/1991', 'American', 'http://en.wikipedia.org/wiki/Alexander_Rossi_%28racing_driver%29'),
(835, 'jolyon_palmer', '30', 'PAL', 'Jolyon', 'Palmer', '20/01/1991', 'British', 'http://en.wikipedia.org/wiki/Jolyon_Palmer'),
(836, 'wehrlein', '94', 'WEH', 'Pascal', 'Wehrlein', '18/10/1994', 'German', 'http://en.wikipedia.org/wiki/Pascal_Wehrlein'),
(837, 'haryanto', '88', 'HAR', 'Rio', 'Haryanto', '22/01/1993', 'Indonesian', 'http://en.wikipedia.org/wiki/Rio_Haryanto'),
(838, 'vandoorne', '2', 'VAN', 'Stoffel', 'Vandoorne', '26/03/1992', 'Belgian', 'http://en.wikipedia.org/wiki/Stoffel_Vandoorne'),
(839, 'ocon', '31', 'OCO', 'Esteban', 'Ocon', '17/09/1996', 'French', 'http://en.wikipedia.org/wiki/Esteban_Ocon'),
(840, 'stroll', '18', 'STR', 'Lance', 'Stroll', '29/10/1998', 'Canadian', 'http://en.wikipedia.org/wiki/Lance_Stroll'),
(841, 'giovinazzi', '36', 'GIO', 'Antonio', 'Giovinazzi', '14/12/1993', 'Italian', 'http://en.wikipedia.org/wiki/Antonio_Giovinazzi'),
(842, 'gasly', '10', 'GAS', 'Pierre', 'Gasly', '07/02/1996', 'French', 'http://en.wikipedia.org/wiki/Pierre_Gasly'),
(843, 'brendon_hartley', '39', 'HAR', 'Brendon', 'Hartley', '10/11/1989', 'New Zealander', 'http://en.wikipedia.org/wiki/Brendon_Hartley');
--
-- Indexen voor geëxporteerde tabellen
--
--
-- Indexen voor tabel `drivers`
--
ALTER TABLE `drivers`
ADD PRIMARY KEY (`driverId`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;