Oracle: Query to list first_name, last_name of employees with the pattern 'l_x' in their first name
Oracle Wildcard special Operator: Exercise-11 with Solution
Write a query to list first_name, last_name of employees with the pattern 'l_x' in their first name.
Sample table : employees
Sample Solution:
Oracle Code:
SELECT first_name, last_name
FROM employees
WHERE first_name LIKE '%l_x%'
ORDER BY first_name;
Output:
FIRST_NAME LAST_NAME -------------------- ------------------------- Alexander Hunold Alexander Khoo Alexis Bull
Pictorial Presentation:
Improve this sample solution and post your code through Disqus.
What is the difficulty level of this exercise?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/oracle-exercises/wildcard-special-operators/oracle-wildcard-special-operators-exercise-11.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics