
sql.like( input as String?, pattern as String, escape as String ) as Boolean?
Returns true if the specified $input like the specified
$pattern, otherwise returns false.
sql.like("this is a string", "is");
=> true
sql.like("this is a string", "zoo");
=> false
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.