Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to compare 2 field values with WildMatch, for example, Model and SModel both contain ABC and should be recognized as 'match'. But the wildmatch here does exact match. How to solve the problem? Thanks.
LOAD if(wildmatch(Model , SModel),1,0) AS Flag
;
LOAD * INLINE [
Model , SModel
ABC, ABC D
];