##概要
Windowsとかで作ったCSVをUTF8のスキーマにドンする
##書き方
set character_set_database=cp932;
create table hoge( fuga varchar(128) )
default charset=cp932;
load data local infile 'load_csv/hoge.csv'
into table hoge
fields terminated by ','
lines terminated by '\r\n'
ignore 1 lines;
-- 入れてからのぉUTF8
set names utf8;
-- で、つくり直す
drop table if exists hoge_utf8;
create table hoge_utf8 as select * from hoge;
ドン