hi
consider I've a tables which has all the dictionary words,
I want to fetch the list of words from the db which can be formed with the given set of alphabets..
for this what could be query???..
I thought of fetching every character using substr and comparing whether its present in a list and word length less than or equal to given set of alphabets..
for example
if i give the following set of alphabets,
I , L, S, N, N, E
then i should be able to get the words like the following ones,
SIN, NIL, INN, INS, LINEN, LINENS, LINE, SINE, LENS etc.,,
What would be the query?