mysql中的load命令使用
使用mysql 中的load 命令,講txt 文件中的內容加載到數據庫表中,例如,創建table,名稱是user,一個字段username;當前有db.txt文件,內容是以空格分開的用戶名,例如:xiaowang xiaoliu zhangsan
將該文件加載到數據表user中,使用命令即可:
Java代碼
load data local infile "/home/beaver/db" into table user lines terminated by ' ';
作者 Beaver's