MySQL - Match Against not search on single string

88 Views Asked by At

Firstly, I tried all the questions & answers related to this topic. Additionally and I tried related questions and try to solve them but with no success. So please read my question thoroughly.

Problem: I have Execute Query but getting only First Record are get .

I want to All Record Related to search String Using Match-Against

Refer Already Link

  1. mysql-search-exact-word-from-string
  2. improving-mysql-match-against-search
  3. mysql-match-against-full-text-search
  4. mysql-match-against-like-search

Query : select * from Student where MATCH (address) AGAINST ( '(india*) (India) (*India)' IN BOOLEAN MODE) ;

Database Record:

  1. India
  2. SPIndiaTest
  3. Test2India
0

There are 0 best solutions below