I want to find a way to find most suitable row from table which contains a word that is most similar to the word i'm entering. any idea? (I'm using OCR that finds words not exactly the same sometimes reads word 'specific' as 'spccific')
Word search within texts to find text that contains most matched variant
194 Views Asked by Coenni At
2
There are 2 best solutions below
1
John Doyle
On
If you are using Oracle then you can try UTL_MATCH which uses something known as the Levenshtein Distance to calculate the minimum number of edits to transform one string into another. Other systems may have something similar or you can use the alogrithm as a starting point for your own function.
Related Questions in SQL
- SQL schema for a fill-in-the-blank exercise
- Hibernate: JOIN inheritance question - why the need for two left joins
- What's supposed to be the problem in this query?
- Compare fields in two tables
- How to change woocomerce or full wordpress currency with value from USD to AUD
- Dynamic query creation with Array like implementation
- SQL query to get student enrolled in this month in a course - Moodle
- SQL LAG() function returning 0 for every row despite available previous rows
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- 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 use system's environnement variables in sql script
- PHP fetchAll on JOIN
- Multitable joining in Sql
- How to display name starting from 'z' by using BETWEEN cmd only?
Related Questions in SQL-SERVER
- Dynamic query creation with Array like implementation
- 'pyodbc.Cursor' object has no attribute 'callproc', mssql with django
- Driver com.microsoft.sqlserver.jdbc.SQLServerDriver claims to not accept jdbcUrl, ${SPRING_DATASOURCE_URL}: GitHub Actions
- PHP Laravel SQLServer could not find driver
- Upsert huge amount of data by EFCore.BulkExtensions
- How to locate relevant tables or columns in a SQL Server database
- Cannot delete SQL datafile (.mdf) as its currently in use
- Writing query in CTE returning the wrong output
- Group By Sum and without Group by sum Amount is different
- plan_handle is always different for each query in SQL Server Cache
- Adding a different string to a table fails
- The specified data type in the EF modelBuilder doesn't correspond to the one that is created
- SQL71561: SqlComputedColumn: When column selected
- How to Solve Error Associated with Trusted Authority
- SQL Server Data Model and Insert Performance
Related Questions in ALGORITHM
- MCNP 6 - Doubts about cells
- Given partially sorted array of type x<y => first apperance of x comes before first of y, sort in average O(n)
- What is the algorithm behind math.gcd and why it is faster Euclidean algorithm?
- Purpose of last 2 while loops in the merge algorithm of merge sort sorting technique
- Dots and Boxes with apha-beta pruning
- What is the average and worst-case time complexity of my string searching algorithm?
- Building a School Schedule Generator
- TC problem 5-2:how to calculate the probability of the indicator random variable?
- LCA of a binary tree implemented in Python
- Identify the checksum algorithm
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Creating an efficent and time-saving algorithm to find difference between greater than and lesser than combination
- Algorithm to find neighbours of point by distance with no repeats
- Asking code suggestions about data structure and algorithm
- Heap sort with multithreading
Related Questions in CPU-WORD
- What does word-size mean with greater size registers?
- clustering co-occuring words around one specific keyword
- Taking too long to count word frequency in pandas dataframe
- Oracle SQL - Extract some words only from a column?
- In R, is it possible to create a random list of words for a speech stream (exposure) where I give it the syllable triplets I need (psycholinguistics)?
- How can I customize page sizes in Quarto's docx output to have different dimensions for individual pages in R?
- From OS X CLI, read file and return only valid English dictionary words?
- Listens to the changes in the first woocomerce variation and applies the same selection to the second variation
- Finding Compound Words in A Text File of 150,000+ Words
- How to count specific words in multiple PDFs and it should be presented in a table using R
- How to select a random word from WordNet Library C#
- how can i get start line number of an element in word document using Aspose words library in java
- Reading CSV file and creating Word Document. Cells have multiple values Seperated by a '~'. How to split them into multi-lines?
- Word mail merge thousands separators and optional decimal places
- Regex search of 2 or 3 words which start with a specific letter
Related Questions in FUZZY-COMPARISON
- Performing a join between dataframes with fuzzy matching without iterrows?
- Is there a way to use the fuzzywuzzy python package to exactly match one part of a string and partially match the other?
- Best way to match strings from different systems
- Grouping similar text?
- Is there a way to fuzzy match phrases but have exact matches on numbers/digits?
- Python or R Context aware fuzzy matching
- Name Matching using Double Metaphone on BigQuery
- Fuzzy comparison of strings in lists of huge length (taking into account performance)
- Find similar rows of a pyspark dataframe based on a particular column using fuzzywuzzy library
- how can I write fuzzy logic for a stock market data
- String Match using Fuzzy Lookup in Excel
- Fuzzyfication of an excel file using ranges from a txt with simpful
- Best way to Join 2 Tables with columns containing SIMILAR data
- Is it possible to merge two tables in Power Query Editor (Power BI) with Python fuzzy matching?
- levenshtein from pyspark.sql.functions is very slow
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 # Hahtags
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?
Maybe you can use the
SOUNDEXfunctionality (SQL Server) orSOUNDS LIKE(MySQL) if it is available with the SQL engine you are using.