How can we search for text containing a pattern anywhere inside a value?
Enclosing a pattern between percentage wildcards (%pattern%) matches substring occurrences anywhere within the string.
Full-text search, surname matching ('%son%'), keyword detection in descriptions.
SELECT name
FROM employees
WHERE name LIKE '%son%';Practice typing production-grade SQL code for LIKE with Wildcards.