INSERT 中的百分号 (%)
我必须将值更改到我的数据库中。字符串值之一可以包含 %
符号。
粗略示例:
UPDATE Mortgage
SET TEXT = 'The interest rate is 7%';
更改未保存在数据库中。如何在 SQL Server 中转义百分号
I have to change values into my database. One of the string values can contain a %
sign.
Rough example:
UPDATE Mortgage
SET TEXT = 'The interest rate is 7%';
The change is not saved in the database. How can I escape the percentage sign in SQL Server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
37 是百分号的十进制 ASCII 代码。
37 is the decimal ASCII code for a percent symbol.
您可以使用自定义转义字符,例如:
但我认为您不需要在这里转义这个字符
%
因为它作为输入值没有特殊含义,但您必须在如果您想在LIKE
查询中使用它。You can use a custom escape character, for example:
But I think you didn't need to escape this character
%
here becouse it has no special meaning as an input value, but you have to escape it in case you want to use it in aLIKE
query.您是否尝试过用“\”转义字符?
Have you tried escaping the character with "\"?
你的架构是什么?
我尝试过这个&它有效(SQL-Server 2008 R2 和 SSMS):
What is your schema?
I tried this & it works(SQL-Server 2008 R2 & SSMS):
尝试将 %: %% 加倍
Try doubling the %: %%