"Like" operator is used for pattern matching and have numerous use cases: Warning |
---|
"%" will be used as a wildcard to represent any sequence of characters, and the "_" represents a single character. |
The following is the list used: Image Modified Wildcard at both ends Return all rows where selected field column value contains the specified "words" anywhere within. Following example return all rows where string of "name" column contains "vcd". Image Modified Result: Image Modified Wildcard at beginning Return all rows where selected field column value ends with the specified characters. Following example return all rows where "name" column ends with "n". Image Modified Result: Image Modified Wildcard at ending Return all rows where selected field column value starts with the specified characters. Example return all rows where "name" column starts with "Jo". Image Modified Result: Image Modified Single character wildcard Returns all rows where selected field column value matches the specified rules Image Modified Example return all rows where "name" column contains "t__t" (3rd & 4th character can be anything). Image Modified |