Skip to content

Instantly share code, notes, and snippets.

View victorlambert's full-sized avatar

Victor Lambert victorlambert

  • Nantes, France
View GitHub Profile
@victorlambert
victorlambert / nationalities.sql
Created April 28, 2016 22:14 — forked from Almarchal/nationalities.sql
French/English SQL Table of the main nationalities currently used in the world (up to date 09/09/2015) / Table SQL des nationalités principales utilisées dans le monde (à jour le 09/09/2015)
CREATE TABLE `Nationality` (
`id` int(11) NOT NULL,
`name_en` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`name_fr` varchar(50) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `Nationality` (`id`, `name_en`, `name_fr`) VALUES
(1, 'Afghan', 'Afghane'),
(2, 'Albanian', 'Albanaise'),
(3, 'Algerian', 'Algérienne'),