码迷,mamicode.com
首页 > 数据库 > 详细

pl/sql development 查询的数据复制到excel

时间:2017-12-07 13:17:32      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:where   一个   eve   str   复制   replace   ace   excel   develop   

chr(9)tab键
chr(10)换行
chr(13)回车
chr(13)&chr(10)回车换行


查询的数据复制到excel,若一个字段值占2个或2个以上单元格,则可能有上述符号,可用instr查出,可用replace删掉
select n_id,s_name from t_a t where stat_time=20171206 and instr(s_name,chr(‘10‘))>0;
select n_id,s_name from t_a t where stat_time=20171206 and instr(s_name,chr(‘13‘))>0;
select n_id,s_name from t_a t where stat_time=20171206 and instr(s_name,chr(‘09‘))>0;

select n_id,s_name,replace(s_name,chr(9)) a2 from t_a t where stat_time=20171206 and instr(s_name,chr(‘09‘))>0;

pl/sql development 查询的数据复制到excel

标签:where   一个   eve   str   复制   replace   ace   excel   develop   

原文地址:http://www.cnblogs.com/jiangqingfeng/p/7998373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!