开发者

how can I avoid white spaces in oracle query result?

开发者 https://www.devze.com 2023-04-05 07:51 出处:网络
I am spooling data from oracle to write it in csv file.. Its fetching bl开发者_StackOverflowank spaces with result. Is there any way to avoid those blank spaces??Use TRIMSPOOL

I am spooling data from oracle to write it in csv file.. Its fetching bl开发者_StackOverflowank spaces with result. Is there any way to avoid those blank spaces??


Use TRIMSPOOL

set trimspool on


SELECT RTRIM(columnname) AS columnname...
0

精彩评论

暂无评论...
验证码 换一张
取 消