Write a Oracle query to list the names (first and last) of those employees whose first name has only five characters and starts with ‘A’
- اوراكل
- 2021-10-12
- mhanasmh00489829403
الأجوبة
Oracle Code:
SELECT first_name, last_name
FROM employees
WHERE first_name like ’A%’ and length(first_name) = 5;
Output:
FIRST_NAME LAST_NAME -------------------- ------------------------- Allan McEwen Alana Walsh
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة