write sql query following source are
EmpID, Salary
101 1000
102 2000
103 3000
I want the output format like following
empid,sal,composite_sal
101 1000 1000
102 2000 3000
103 3000 6000
Answer Posted / niru
select empid,sal,sal+lead(nvl(sal,0) from emp_det
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the usage of analyze command in oracle?
What are the original export and import utilities?
What is the max number of columns in an oracle table?
What does sharding mean?
How do I spool to a csv formatted file using sqlplus?
Use of an integrity constraint is better to validate data. Explain
How to test null values?
How to assign values to data fields in record variables?
What is raw datatype?
How index is implemented in oracle database?
What is where clause in oracle?
WHAT IS THE DEFINITION OF DEFAULT CUSTOMER IN AR?
Can I create users through internet explorer in oracle 10g?
How do we get field detail of a table?
Explain overloading. Can functions be overloaded?