Changes

Jump to: navigation, search

J.Y.S

300 bytes added, 16:15, 20 October 2010
1.
order by hire_date desc;
</pre>
 
''FINAL''
SELECT employee_id, SUBSTR(last_name ||' '|| first_name, 1, 25) "Full Name",
job_id,
TO_CHAR(TRUNC(hire_date, 'MONTH'), 'fmMonth Ddspth "in the year" YYYY')
"Start Date"
FROM employees
WHERE TO_CHAR(hire_date, 'mm') IN (05, 11)
ORDER BY hire_date DESC;
===2.===

Navigation menu