Skip to content

Instantly share code, notes, and snippets.

View sivumakhonco's full-sized avatar

Sivuyisiwe Makhonco sivumakhonco

  • South Africa
View GitHub Profile
@sivumakhonco
sivumakhonco / gist:18f98aa84de70d83286a
Last active August 29, 2015 09:28 — 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'),