Answers for "Write a query that returns all records where the buyer name has a (lowercase) "e" in its 3rd position."

SQL
0

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%';
Posted by: Guest on May-18-2021

Code answers related to "Write a query that returns all records where the buyer name has a (lowercase) "e" in its 3rd position."

Code answers related to "SQL"

Browse Popular Code Answers by Language