Java 中的 MySQL:在 varbinary 字段上使用 LIKE 查询?

发布于 2024-10-17 09:19:21 字数 219 浏览 3 评论 0原文

基本上,我有一个表,其中包含索引 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-10-24 09:19:21

尽管手册中没有明确说明,但在几个地方暗示 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文