仅使用否定项进行 SQLite MATCH

发布于 2024-10-27 05:07:02 字数 307 浏览 2 评论 0原文

我最近发现这在 SQLite 中是不可能的:

 SELECT * FROM fruit WHERE fruit MATCH '-apple'

然而这是可能的:

 SELECT * FROM fruit WHERE fruit MATCH 'pear -apple'

我使用 FTS3 和 FTS4 进行了尝试,得到了相同的结果。为什么 match 需要至少一个非否定项?我该如何解决这个限制?我需要返回所有与“苹果”不匹配的水果......就是这样。有什么想法吗?

I recently found that this is impossible in SQLite:

 SELECT * FROM fruit WHERE fruit MATCH '-apple'

Yet this is possible:

 SELECT * FROM fruit WHERE fruit MATCH 'pear -apple'

I tried this using FTS3 and FTS4 with the same results. Why does match require at least one non-negated term? And how do I work around this limitation? I need to return all fruits that don't match "apple"...that's it. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

倾其所爱 2024-11-03 05:07:02

像这样的事情会起作用:

SELECT * FROM fruit 
WHERE fruit.oid NOT IN 
(
    SELECT oid FROM fruit WHERE fruit MATCH 'apple'
)

Something like this will work:

SELECT * FROM fruit 
WHERE fruit.oid NOT IN 
(
    SELECT oid FROM fruit WHERE fruit MATCH 'apple'
)
舂唻埖巳落 2024-11-03 05:07:02

为什么不简单地反转搜索?

select * from fruit where fruit NOT match 'apple'


您可以使用 EXCEPT 子句:

select * from fruit except select * from fruit where fruit match 'apple';

但这可能不是很有效。

Why don't you simply invert the search?

select * from fruit where fruit NOT match 'apple'


You could use a EXCEPT clause:

select * from fruit except select * from fruit where fruit match 'apple';

but that might not be very efficient.

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