デモのデータ MySQL Documentation URL https://dev.mysql.com/doc/index-other.html # Table CREATE TABLE `country` ( `Code` CHAR(3) NOT NULL DEFAULT '' comment '国コード’, `Name` CHAR(52) NOT NULL DEFAULT '' comment '国名’, `Continent` enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America') NOT NULL DEFAULT 'Asia' comment '大陸’, `Region` CHAR(26) NOT NULL DEFAULT '' comment '地域’, `SurfaceArea` FLOAT(10,2) NOT NULL DEFAULT '0.00' comment '表面積’, `IndepYear` SMALLINT(6) DEFAULT NULL comment '' comment '独立年’, `Population` INT(11) NOT NULL DEFAULT '0' comment '人口’, `LifeExpectancy` FLOAT(3,1) DEFAULT NULL comment '寿命’, `GNP` FLOAT(10,2) DEFAULT NULL comment '国民総生産’, `GNPOld` FLOAT(10,2) DEFAULT NULL comment '国民総生産old’, `LocalName` CHAR(45) NOT NULL DEFAULT '' comment 'ローカル名’, `GovernmentForm` CHAR(45) NOT NULL DEFAULT '' comment '政府形式’, `HeadOfState` CHAR(60) DEFAULT NULL comment '国家元首’, `Capital` INT(11) DEFAULT NULL comment '資本’, `Code2` CHAR(2) NOT NULL DEFAULT '' comment '国コード2’, PRIMARY KEY (`Code`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;