how can i show all resualts related to all words in a sentence for example when i try select * from 'table' where 'query' like '%a b c d e f g%' i get all results contain this value only "a b c d e f g" but i want show all result contain this words in any order or place
use match against. 1. Create full text index on column on which you wish to search. 2. Use query like match(COLUMN) against('a b c d e f g')