我做的一个功能 表格都是在数据库中直接提取的 热单耗(GJ)但是想把括号中的内容换行显示
热单耗
(GJ) 这种效果的 请问怎么办
------解决思路----------------------
with tmp as
(select '热单耗(GJ)' col from dual)
select replace(col,'(',chr(10)
------解决思路----------------------
'(') as col from tmp
with tmp as
(select '热单耗(GJ)' col from dual)
select replace(col,'(',chr(10)
------解决思路----------------------
'(') as col from tmp