博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pl/sql development 查询的数据复制到excel
阅读量:6582 次
发布时间:2019-06-24

本文共 540 字,大约阅读时间需要 1 分钟。

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;

转载于:https://www.cnblogs.com/jiangqingfeng/p/7998373.html

你可能感兴趣的文章
各版本linux下载地址大全
查看>>
CentOS 6.X 关闭不需要的 TTY 方法
查看>>
我的友情链接
查看>>
分区技术学习一
查看>>
Juniper 高级选项
查看>>
编程能力的四种境界
查看>>
编译安装mysql
查看>>
在windows上秒开应用程序
查看>>
【20180611】MySQL OOM
查看>>
Python面向对象编程(一)
查看>>
决心书
查看>>
如何把图片上的文字转换成word?
查看>>
7z命令行
查看>>
C语言编程实现 输入一个非负整数,返回组成它的数字之和(递归方法)
查看>>
c3p0
查看>>
我的友情链接
查看>>
引号-下划线,连接多个变量
查看>>
我的友情链接
查看>>
38线程1-Thread-local-Timer
查看>>
处理svn的 File '/aa' is out of date
查看>>