当前位置:操作系统 > Unix/Linux >>

into outfile和load data infile的使用

into outfile和load data infile的使用
 
将查询结果导出为文本文件
 
SELECT 字段 into outfile 'test/123.txt'  from 表名
 
将文本文件导入到表中
 
load data infile 'test/123.txt' into table 
 
表名 fields terminated by  '\t'  enclosed by '~';
 
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,