Syntax:<br\>string_expression[NOT]LIKEpattern_value[ESCAPEescape_character]<br\><br\>Thestring_expressionmusthaveastringvalue.Thepattern_valueisastringliteralorastring-valuedinputparameterinwhichanunderscore(_)standsforanysinglecharacter,apercent(%)characterstandsforanysequenceofcharacters(includingtheemptysequence),andallothercharactersstandforthemselves.Theoptionalescape_characterisasingle-characterstringliteraloracharacter-valuedinputparameter(i.e.,charorCharacter)andisusedtoescapethespecialmeaningoftheunderscoreandpercentcharactersinpattern_value.<br\><br\>Examples:<br\><ul><li\>address.phoneLIKE‘12%3’istruefor'123''12993'andfalsefor'1234'<li\>asentence.wordLIKE‘l_se’istruefor‘lose’andfalsefor'loose'<li\>aword.underscoredLIKE‘\_%’ESCAPE'\' is true for '_foo' and false for 'bar'<li \>address.phone NOT LIKE ‘12%3’ is false for '123' and '12993' and true for '1234'</ul><br\>Ifthevalueofthestring_expressionorpattern_valueisNULLorunknown,thevalueoftheLIKEexpressionisunknown.Iftheescape_characterisspecifiedandisNULL,thevalueoftheLIKEexpressionisunknown.