Skip to content

Instantly share code, notes, and snippets.

View qPCR4vir's full-sized avatar
🎯
Focusing

Ariel Vina-Rodriguez qPCR4vir

🎯
Focusing
View GitHub Profile
@qPCR4vir
qPCR4vir / gist:5ae08ed1f7bb0c36178ecd69f01471de
Created September 24, 2017 15:14 — forked from nobuti/gist:3816985
MySQL tables for continent names, country names and their ISO codes
CREATE TABLE IF NOT EXISTS `continents` (
`code` CHAR(2) NOT NULL COMMENT 'Continent code',
`name` VARCHAR(255),
PRIMARY KEY (`code`)
) ENGINE=InnoDB;
INSERT INTO `continents` VALUES
('AF', 'Africa'),
('AS', 'Asia'),
('EU', 'Europe'),