What is ‘LIKE’ used for in WHERE clause? What are the wildcard characters ?
LIKE is used for partial string matches. ‘%’ ( for a string of any character ) and ‘_’ (for any single
character ) are the two wild card characters.
LIKE is used for partial string matches. ‘%’ ( for a string of any character ) and ‘_’ (for any single
character ) are the two wild card characters.