XML 中通配符的使用
需要从DB2表中过滤出其中包含B的所有值。 (我们使用一个将 XML 与 DB2 链接的工具)
当我使用 "B*"
时,它会过滤所有以 B
作为第一个字符的值,但当我给出 " 时*B*"
它采用数据库中的所有值
不起作用
是否有其他方法可以为搜索元素添加通配符前缀。
Need to filter all values containing B in it from a DB2 table.
(We use a tool that links XML with DB2)
When i use "B*"
it filters all values that has B
as first character but when i give "*B*"
it takes all values in database
<DESC VALUE ="*B*">
is not working
Is there any other way to prefix a wildcard character for searching elements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我支持 Peter,使用 '%B%' 请参阅 DB2 SQL 中的通配符
还有
DB2 通用数据库的基本 SQL 编码对于 OS/390(在“搜索字符串模式”下);
I second Peter, use '%B%' see Wildcards in DB2 SQL
also
Basic SQL Coding for DB2 Universal Database for OS/390 (under 'Searching for String Patterns);
我不知道您的 XML 工具,但这也许能为您带来解决方案?
I have no idea about your XML-Tool but maybe this vould lead to a solution for you?