이 사이트에 친절하게 우편번호 txt 파일이 있다~
테이블 만들고
CREATE TABLE `zip_code` (
`zipcode` char(7) DEFAULT NULL,
`sido` char(4) DEFAULT NULL,
`gugun` char(17) DEFAULT NULL,
`dong` char(52) DEFAULT NULL,
`ri` char(52) DEFAULT NULL,
`bldg` char(52) DEFAULT NULL,
`bunji` char(17) DEFAULT NULL,
`seq` int(5) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
import 하면 됨
LOAD DATA LOCAL INFILE 'c:/zipcode.txt' INTO TABLE zip_code
CHARACTER SET 'euckr' FIELDS TERMINATED BY '\t' IGNORE 1 LINES;