数据库中导出表中对应字段到指定文件里「建议收藏」

December 17, 2023
测试
测试
测试
测试
2 分钟阅读

大家好,又见面了,我是全栈君。

数据库中导出某一个表中须要的字段到文件里是公司中常常要做到的事,那怎么实现呢?

比方你要查询enterpriseaics中的全部字段的值到d盘的aa.txt中去,注:aa.txt不能存在,否则会报错。

<span style="font-size:18px;">select * from enterpriseaics into outfile 'd:\\aa.txt' ;</span>

当然假设你想规范一下格式,比如:每一个字段的值之间以逗号分开,每一行换行,每一个字段的值要引號引起来。

那么就要加上以下的一段话:

select * from enterpriseaics into outfile 'd:\\aa.txt' fields terminated by ',' enclosed by '"' ;

当然,这是在本地数据库中导出的,那么在本地通过secureCRT连接linux数据库要导出数据时就要指明导出路径了,不然会报没有写权限的错误。

select * from enterprisetype into outfile '/var/lib/mysql/enterprisetype.txt' fields terminated by ',' enclosed by '"' ;

本人亲測,这个/var/lib/mysql路径能够导出数据

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/116041.html原文链接:https://javaforall.cn

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多