Java 中的 MySQL:在 varbinary 字段上使用 LIKE 查询?
基本上,我有一个表,其中包含索引 varbinary 字段。
我想说:返回 varbinary 字段以(字节数组)开头的所有行。
我如何在 Java 中执行此操作?我有一个带有“SELECT * WHERE data LIKE ?”的PreparedStatement但是如果我使用 setBytes 将二进制数组设置为参数,如何指定 LIKE 查询应该是前缀(而不是其他类型的正则表达式)?
Basically, I have a table with an indexed varbinary field in it.
I want to say: return all rows whose varbinary field starts with (an array of bytes).
How do I do this in Java? I have a PreparedStatement with "SELECT * WHERE data LIKE ?" but if I set the binary array as an argument with setBytes, how do I specify that the LIKE query should be a prefix (as opposed to another type of regular expression)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管手册中没有明确说明,但在几个地方暗示 LIKE 适用于 varbinary,并带有常见的通配符。传递给 setBytes 的二进制数组应在适当的位置包含“%”。
您只需尝试一下,看看会发生什么。
Although not explicitly stated in the manual, it is implied in several places that LIKE works on varbinary, with the usual wildcard characters. The binary array you pass to setBytes should contain the '%' at the appropriate place.
You'll just have to try it and see what happens.