Write a query that returns all records where the buyer name has a (lowercase) "e" in its 3rd position. code example
Example: Write a query that returns all records where the buyer name has a (lowercase) "e" in its 3rd position.
SELECT last_name FROM employees WHERE last_name LIKE '__e%';