Ascalonian
Programmer
I am trying to use Oracle's Text searching but running into an issue.
Say I have a table that has a CUSTOMER_NAME column in it.
Now say I have several values in here, all starting with "Bank Of" and some name. For a good example, let me use "Bank Of America".
Now, if I do the following, I get results
However, if I remove the 'f' from 'Of', it breaks
I do not understand why removing the 'f' breaks this. Any ideas?
Say I have a table that has a CUSTOMER_NAME column in it.
Now say I have several values in here, all starting with "Bank Of" and some name. For a good example, let me use "Bank Of America".
Now, if I do the following, I get results
Code:
SELECT *
FROM some_table
WHERE CONTAINS(customer_name, 'Bank Of') > 0
However, if I remove the 'f' from 'Of', it breaks
Code:
SELECT *
FROM some_table
WHERE CONTAINS(customer_name, 'Bank O') > 0
I do not understand why removing the 'f' breaks this. Any ideas?