感謝XP提供的代碼!
在這裡記錄一下,因為以後學要用;作用資料查詢之用!
第一步:mysql -h localhost -uroot
第二步:show databases;
第三步:use changchunmap;
第四步:show tables;
第五步:load data local infile "d:/c.txt" replace into table changchunmap fields terminated by ' ';
沒有了;
load data local infile "d:/migration/mysql/babel_topic.txt" replace into table babel_topic_test fields terminated by ' '
load data local infile "d:/migration/mysql/babel_user.txt" replace into table babel_user_test fields terminated by '\t'
在導入過程中因為某些字段數據為NULL修改了某些表格的長度和可以為空,為了正確導入,請保證如下字段修改完畢:
Babel_topic: tpc_uname VARCHAR(192) 可以為NULL
Babel_user: usr_password VARCHAR(64) 可以為NULL
usr_nick VARCHAR(192) 可以為NULL
load data local infile "d:/c.txt" replace into table changchunmap fields terminated by ' '