INSTR vs LIKE '%XXX%'
399913Jul 28 2003 — edited Jul 29 2003Hi
I am curious as to which approach would be the most efficient when searching for a word/substring within a large text field.
Would it be more efficient to use:
WHERE INSTR(column_name, 'search_word') > 0
OR
WHERE column_name like '%search_word%'
Thanks
Ozzy