-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Description
Right now the _search= argument searches across all fields in a full-text index, for example:
SQLite FTS also supports searches within a specified field, for example:
select rowid, * from Film_Locations_in_San_Francisco
where rowid in (
select rowid from [Film_Locations_in_San_Francisco_fts]
where [Locations] match :search
) order by rowid limit 101
The _search= parameter could be extended to support this using _search_colname=.
This should also be able to support columns with spaces and special characters in their names, something like this:
_search_Column%20With%20Spaces=foo
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels