I would like to perform a boolean mode search of my table without a full-text index. My dataset requires extremely fine levels of detail, so my documents have each word being it's own row, rather than each document being a row. Is it possible to make a regular index the subject of a boolean mode search, rather than having the full-text index (obviously useless here) as the subject?
Boolean mode search on column of individual words MySQL
54 Views Asked by user2520535 At
1
There are 1 best solutions below
Related Questions in MYSQL
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to change woocomerce or full wordpress currency with value from USD to AUD
- window.location.href redirects but is causing problems on the webpage
- Error: local variable 'bramka' referenced before assignment
- Products aren't displayed after fetching data from mysql db (node.js & express)
- status table for all entries (even in different dates) in database changing value when all checkboxes are checked
- Can't Fix Mariadb & Mysql ERROR 2002 (HY000): Can't connect to local server through socket '/tmp/mysql.sock' (2) On MacOs
- Express Mysql getting max ID from table not working cought in a promise
- failed to upload a table from sql file
- Update a MySQL row depending on the ID in Google Sheets Apps Script
- Use row values from another table to select them as columns and establish relations between them (pivot table)
- SQL: Generate combination table based on source and destination column from same table
- How to display the column names which have only unique non-null values in MySQL table?
- mysql query takes too long because of wrong indexes usage
- Multitable joining in Sql
Related Questions in FULL-TEXT-SEARCH
- Solution Indication - Database
- Vespa not able to identify the embedding id during the query. even when it is in vald embedders list
- How to detect if two sentences are simmilar, not in meaning, but in syllables/words?
- Fulltext index crawls stuck at has_crawl_completed 0
- Using MYSQL optimise table with innodb_optimize_fulltext_only and innodb_ft_num_word_optimize options, how do I know when it's finished?
- Ignoring folders in The Silver Searcher `ag`
- Fast string search in PostgreSQL table with slightly erroneous input
- Elasticsearch - Default token in Analyzer if emitted tokens are empty
- RegEx - exclude specified list of strings that contain the string to match
- Why does RediSearch FT.AGGREGATE put entries into the wrong groups?
- Filtering nested models using generic foreign keys in django
- elasticsearch synchronis solution
- TSQL Fulltext search of word containing 1 digit and 1 letter
- Laravel Scout, search only get 20 items
- Can the pg_search full-text-search (tsearch) do both prefix and dictionary searching at the same time?
Related Questions in BOOLEAN-SEARCH
- Integrate Boolean Operators in SearchBox in a React/ElasticSearch/Django website
- Bitwise operation on a dynamic data structure
- Stringed Boolean Search or Filter in Django
- `~` (tilde) operator in Boolean Full-Text Search in MySQL is not behaving as stated in MySQL developer website
- LinkedIn boolean search param 'geoUrn'
- when I press the button it change davyd to Ace, and Ace to Davyd
- Can a JavaScript variable declaration/initialization use a boolean type conditional?
- MySQL Boolean Search include field inside inner join
- Laravel MySQL Search. Allowing users to do custom Boolean Search
- "Reverse boolean search" or What is best way to build subscription by keywords (with boolean rules) system?
- Python Query Processing and Boolean Search
- how to do Boolean grouping search?
- Sqlite query to get search word with adjacent words too
- Fulltext Search engine, multiple columns, boolean mode
- ElasticSearch bool search using array
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It sounds like your data is in a document-word structure.
One way to make this work is by using standard comparisons and a
havingclause. The following would search for "wordA" and "wordB" but not "WordC":If you want to use a full text index, then concatenate your documents together, doing something like:
Store this as a separate table and use the full text index there.