MySQL 的百分号是否有等效的 PouchDB / CouchDB
Is there a PouchDB / CouchDB equivalent for MySQL's percentage sign
MySQL的百分号有没有对应的符号
Character | Description
----------+-------------------------------------------------------
% | Matches any number of characters, even zero characters
我想做类似的事情
%john%
应该得到任何类似的 ID。
john_doe
doe_john
john_smith
smith_john
etc.
Startkey 和 Endkey 未提供所需的结果。
没有等价物,没有。但是 pouchdb-find
插件 (try it here) 完成后会有一个 $regex
选项。
同时,您可以进行前缀搜索(例如'john%'
)as described here。请注意,由于 B 树的工作方式,后缀搜索(例如 '%john'
)在任何数据库中都非常慢。
MySQL的百分号有没有对应的符号
Character | Description
----------+-------------------------------------------------------
% | Matches any number of characters, even zero characters
我想做类似的事情
%john%
应该得到任何类似的 ID。
john_doe
doe_john
john_smith
smith_john
etc.
Startkey 和 Endkey 未提供所需的结果。
没有等价物,没有。但是 pouchdb-find
插件 (try it here) 完成后会有一个 $regex
选项。
同时,您可以进行前缀搜索(例如'john%'
)as described here。请注意,由于 B 树的工作方式,后缀搜索(例如 '%john'
)在任何数据库中都非常慢。