将空格字符连接到字段值
我如何附加空白字符 - 例如   /  (不间断空格)到查询oracle服务器的字段值?
我尝试过
SELECT myfield || ' ' FROM mytable
,但这被解释为名称为 #160 的变量。
How can i append a whitespace character- for example / (non-breaking space) to a field value querying oracle server?
I tried
SELECT myfield || ' ' FROM mytable
but this is interpreted as a variable with the name #160.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用该命令
可防止 Oracle 使用
&
表示变量替换。当然,这只是阻止它关闭 & 。象征。您可以使用
chr( )
函数插入具有所需二进制等效值的字符。Use the command
to prevent Oracle from using the
&
to denote a variable substitution.Of course that just keeps it from keying off the & symbol. You could use the
chr( )
function to insert a character with that binary equivalent value that you want.只是
为我做事。这对你不起作用吗?
simply doing
works for me. Does this not work for you?
您还可以使用 CHR功能:
You could also use the CHR function: