查询以查找以百分号 % 结尾的列
我应该使用什么 T-SQL 查询来查找所有以 %
结尾的 row1 行?我使用的是 SQL SERVER 2000。column1 中的示例数据:
column1
-------
100px
100% <- THIS ROW
200px
200% <- THIS ROW
300px
300% <- THIS ROW
What T-SQL query I should use to find out all rows that have column1 ending with %
? I am using SQL SERVER 2000. Sample data in column1:
column1
-------
100px
100% <- THIS ROW
200px
200% <- THIS ROW
300px
300% <- THIS ROW
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请查看问题在 SQL Server 中转义字符串,以便可以安全地在 LIKE 表达式中使用,了解转义特殊字符的更多示例。
官方文档位于 MSDN 文章中运算符 (SQL Server 2000)。
Please check out question Escape a string in SQL Server so that it is safe to use in LIKE expression for more examples of escaping special characters.
The official documentation is in the MSDN article for the LIKE operator (SQL Server 2000).