"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 Added 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 Added Result: Image Added 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 Added Result: Image Added 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 Added Result: Image Added Single character wildcard Returns all rows where selected field column value matches the specified rules Image Added Example return all rows where "name" column contains "t__t" (3rd & 4th character can be anything). Image Added |