\(*the literal ( (4010 / 508 / 2816) , repeated any number of times
*matches any number of characters from the set below:
\wany word character
\da digit
.the literal . (4610 / 568 / 2E16)
\s*any whitespace character, repeated any number of times
Group 3([<>!=]{1,2}|like|not like|is null|is not null|in\s*\()? ?repeats the group contents below at most once:
1st Alternative[<>!=]{1,2} Character Class[<>!=]{1,2} {1,2}matches between 1 and 2 characters from the set below:
<the literal < (6010 / 748 / 3C16)
>the literal > (6210 / 768 / 3E16)
!the literal ! (3310 / 418 / 2116)
=the literal = (6110 / 758 / 3D16)
likethe literal text like (case sensitive) not likethe literal text not like (case sensitive) is nullthe literal text is null (case sensitive) 5th Alternativeis not null is not nullthe literal text is not null (case sensitive) inthe literal text in (case sensitive) \s*any whitespace character, repeated any number of times
\(the literal ( (4010 / 508 / 2816)
\s*any whitespace character, repeated any number of times
Negative Lookahead(?!and|or) andthe literal text and (case sensitive) orthe literal text or (case sensitive) Non-Capturing Group(?:(?:(between )(['"]?)(.*?)(\5)( and )(['"]?)(.*?)(\9))|(?:(['"]?)(.*?)(\12))) 1st Alternative(?:(between )(['"]?)(.*?)(\5)( and )(['"]?)(.*?)(\9)) Non-Capturing Group(?:(between )(['"]?)(.*?)(\5)( and )(['"]?)(.*?)(\9)) between the literal text between (case sensitive) ?matches at most one character from the set below:
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
.*?any character (except for line terminators), repeated any number of times
\5the text saved by group 5
and the literal text and (case sensitive) 2nd Alternative(?:(['"]?)(.*?)(\12)) \s*any whitespace character, repeated any number of times
\s+any whitespace character, repeated at least once
Negative Lookahead(?!'|") \s*any whitespace character, repeated any number of times
\s*any whitespace character, repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first