Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试选择连续包含四个百分号的数据。我怎样才能逃避百分比符号,以便我的 LIKE 条件有效?
谢谢
@%与转义字符子句一起使用:
@%
select * from tbl where fld like '%@%%' escape '@'
这将搜索列中包含该"%"字符的所有记录fld。
"%"
fld
DB2/z 的格式略有不同:
select * from tbl where fld like {escape '@'} '%@%%'
显然,您需要仔细选择转义字符,以免干扰字符串的其余部分,但这对于静态字符串来说相对容易。动态构建的字符串将需要动态构建的查询,以便它不使用字符串中的字符。