• oracle 回车、换行符


    回车换行符

    chr(10)是换行符,
    chr(13)是回车,

    增加换行符 

    select ' update ' || table_name ||
           ' set VALID_STATE =''0A'';'||chr(13)||' commit;'
      from user_tables

    删除换行符

    select id,replace(content,to_char(chr(13))||to_char(chr(10)),'_r_n') from fact_content order by content;

    oracle中去掉文本中的换行符、回车符、制表符小结

    一、特殊符号ascii定义

    制表符 chr(9)
    换行符 chr(10)
    回车符 chr(13)

    二、嵌套使用repalce,注意每次只能提交一个符号,如先回车再换行 

    select REPLACE(gg, chr(10), '') from dual    

    要注意chr(13) | | chr(10) 此类结合使用的情况比较多,

    回车换行在notepad中是比较好看点的,所以要考虑此种情况          

    select translate(string,chr(13)||chr(10),',') from dual;

     三、对于字符大对象的符号处理

    对于clob字段中的符号处理,先to_char然后一样的处理

    select to_char(vcl),replace(to_char(vcl),chr(10),'[]') from test_1;

     

  • 相关阅读:
    第十一周助教小结
    第十周助教小结
    第九周助教小结
    第八周助教小结
    第七周助教小结
    第六周助教小结
    第五周助教小结
    [SHOI2006]有色图
    [JSOI2019]神经网络
    【CF 715E】Complete the Permutations
  • 原文地址:https://www.cnblogs.com/alsf/p/7955895.html
Copyright © 2020-2023  润新知