What I expect to do is: when user search for any term, depending upon the content, sql query should return list of maximum occured words.
For example:
Table schema:
tbl_product (id, title, content)
Search term: car
Expected output depending upon content:
- car (100)
- cars (75)
- card (50)
- carpenter (20)
- cargo (15)
EDIT
The main intention here is to return keywords matched by the expression.