Have you tried the POSITION function and multiple OR conditions?
SELECT *
FROM TABLE
WHERE POSITION('ABC_123' IN UPPER("Description") > 0
OR POSITION('ABC_124' IN UPPER("Description") > 0
OR POSITION('DE_25' IN UPPER("Description") > 0;
I think either way this is going to be an expensive CPU/IO process on Teradata. I don't know of a native function in Teradata 13.x or older release that will facilitate this. Teradata 14.x (I think 14.10) is supposed to introduce regular expression support natively that may make this an easier solution.
How many list words are you talking about?
What if you use a subquery with the LIKE predicate?
SELECT *
FROM myTable
WHERE UPPER("Description")
LIKE (SELECT ListWord
FROM myListWords);
You may have to make your list words appear as a pattern in the subquery:
SELECT *
FROM myTable
WHERE UPPER("Description")
LIKE (SELECT '%' || ListWord || '%' AS ListWordPattern
FROM myListWords);
""%ABC_124%"is an error, I did not corrected in the edit just in case. If is an error, edit and correct. – Yaroslav Sep 25 '12 at 15:31