Talk:Oracle SQL Developer
Appearance
![]() | Computing: Software Stub‑class ![]() | |||||||||||||||
|
HOW TO DO THINGS WITH ORACLE SQL DEVELLOPER
I did not find a section on how to do things in Oracle SQL Deverloper. So here are my first thing I would like to do.
1. How to do we do inputs typed by a user at the keyboard with Oracle SQL DEVELOPER??? —Preceding unsigned comment added by 72.192.42.170 (talk) 14:02, 15 February 2010 (UTC)
Done Wikipedia is not a forum to explain how to do thing with a piece of software. Use the official help for that. Closing. Wget (talk) 22:01, 25 June 2016 (UTC)
SELECT last_name, hire_date, salary,
LAG(salary, 1, 0) OVER (ORDER BY hire_date) AS PREV_SAL
FROM employees
WHERE job_id = 'PU_CLERK';