I am assigning oracle query result to unix variable. In the query result the column has -e
as value. When i assign this to a unix variable, it becomes ¿e
. How to overcome this junk value?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
The issue was with hyphen.. - / —
.
'—'
is an invalid hyphen. I had corrected the same with '-'
.
The issue is resolved now.