Feb 8, 2002 #1 dsquare MIS Aug 7, 2001 4 US Does Teradata allow the use of functions within the LIKE predicate evaluation? For example, can the following code be done in Teradata. Where t1.f1 LIKE '%SUBSTR(t2.f2,1,3)%' Thanks DSquare
Does Teradata allow the use of functions within the LIKE predicate evaluation? For example, can the following code be done in Teradata. Where t1.f1 LIKE '%SUBSTR(t2.f2,1,3)%' Thanks DSquare
Feb 8, 2002 #2 OraCool Technical User Jan 17, 2002 67 CA try this: Where t1.f1 LIKE '%'||SUBSTR(t2.f2,1,3)||'%' Did it work? Upvote 0 Downvote
Feb 11, 2002 Thread starter #3 dsquare MIS Aug 7, 2001 4 US It appears as if this works. Thanks, DSquare Upvote 0 Downvote