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