views:

43

answers:

2

Is it possible to use mysql to search for the word "arsech" and find the word "Search" (if it is in the database)?

A: 

is a word contains both a and r and s and e and c and h, and doesn't contains the rest of the ABC... than you'll find all permutations... there is a problem with words that contain them more then once, but this also can be dealt with...

Dani
A: 

Checking for string permutation describes this by normalizing the string.

BTW what problem does it solve?

stacker