Wildcard characters represent one or more characters, or a range of characters, in a match_string.
like @variable + "%".
If the match string is a constant, it must always be enclosed in single or double quotes.
Use wildcard characters with the keyword like to find character and date strings that match a particular pattern. You cannot use like to search for seconds or milliseconds.
Use wildcard characters in where and having clauses to find character or date/time information that is like—or not like—the match string:
{where | having} [not] expression [not] like match_string [escape "escape_character "]
expression can be any combination of column names, constants, or functions with a character value.
select phone from authors where phone = "415%"