For example, I want to find the word " marple ", this should return a string with the close or exact word " marble ", " maple ',' marple , etc.
How to do this in mysql query? or is it better to give a sentence for a word, if any?
SOUNDEX function .
"Two lines that sound almost the same should have the same soundex lines."
In MySQL, you can try using the soundex function, but this is not a real solution. Use Sphinx or Lucene.
You can use this
$ sql = "select * from tbl_name, where is your_field, for example '% is your search keyword%'";
Source: https://habr.com/ru/post/1306761/More articles:Transposing and wrapping a string in java - javaIs there a safe / standard way to manage unstructured memory in C ++? - c ++https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1306758/alternatives-to-connect-to-oracle-database-server-without-install-the-oracle-client&usg=ALkJrhjGU-TnXKODkF8jktJN6lEEcwjevAunderstanding of C ++ assembly - c ++The most efficient server-side programming language for web development? - javaWhere is the virtual machine located in LLVM? - virtual-machineHow to create a registry key through a java program? - javaHow to clear form data depending on registered user in django admin panel? - djangoText in Captcha Image using java - javausing default icons in UITabbar - iphoneAll Articles