沒有指定字段表,所以load data infile期望輸入行對每個表列包含一個字段。使用缺省fields和lines值。
如果你希望僅僅裝載一張表的某些列,指定一個字段表:
mysql教程> load data infile 'persondata.txt'
into table persondata (col1,col2,...);
如果在輸入文件中的字段順序不同於表中列的順序,你也必須指定一個字段表。否則,mysql不能知道如何匹配輸入字段和表中的列。
如果一個行有很少的字段,對於不存在輸入字段的列被設置為缺省值
select <columns>
from <table_name>
into outfile <file_name>
select
employee.id,
employee.first_name,
employee.last_name,
employee.start_date,
employee.salary,
employee.city
from employee into outfile 'c:employee.txt';
導入
load data infile 'file_name.txt'
into table tbl_name (field1, field2...etc)
load data infile 'c:employee.txt'
into table employee (id, first_name, last_name, start_date, salary, city);
從文件導入
mysql> load data local infile 'c:mytable.txt' into table mytable lines terminated by 'rn';
mysql>