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

Answers were Sorted based on User's Feedback



write sql query following source are EmpID, Salary 101 1000 102 2000 103 3000 ..

Answer / bijaylaxmi sahoo

write sql query following source are
table name-emp_det
EmpID, Salary
101 1000
102 2000
103 3000
answer-
select t.empid,t.sal,(select sum(x.sal) from emp_det x
where x.empid<=t.empid) as com_sal
from emp_det t;
output-
empid,sal,composite_sal
101 1000 1000
102 2000 3000
103 3000 6000

Is This Answer Correct ?    9 Yes 1 No

write sql query following source are EmpID, Salary 101 1000 102 2000 103 3000 ..

Answer / mukesh

select empid,
salary,
sum(salary) over(order by empid rows unbounded
preceding) composite_sal from source

Is This Answer Correct ?    3 Yes 0 No

write sql query following source are EmpID, Salary 101 1000 102 2000 103 3000 ..

Answer / niru

select empid,sal,sal+lead(nvl(sal,0) from emp_det

Is This Answer Correct ?    0 Yes 0 No

write sql query following source are EmpID, Salary 101 1000 102 2000 103 3000 ..

Answer / farrukh shaikh

select empid,
salary,
sum(salary) over(order by empid rows unbounded
preceding) composite_sal from (select 101 EmpID, 1000
Salary
from dual
union all
select 102, 2000
from dual
union all
select 103, 3000
from dual
union all
select 110, 5000 from dual)

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle General Interview Questions

Query to retrieve record for a many to many relationship ?

0 Answers   Keane India Ltd,


What are the data types in oracle?

0 Answers  


How to define an anonymous procedure with variables?

0 Answers  


Explain joins in oracle?

0 Answers  


How to create an oracle testing table?

0 Answers  


What is pragma autonomous transaction in oracle?

0 Answers  


What is logical backup in oracle?

0 Answers  


Difference between pre-select and pre-query

0 Answers  


What is the use of aggregate functions in oracle?

0 Answers  


What is oracle database client?

0 Answers  


What is ASM (Automatic Storage Management) in Oracle?

0 Answers   MCN Solutions,


1.What is inline function in oracle and its purpose? 2.What is the equivalent operator for "different from pattern" in oracle? 3. If you define a variable in oracle, how it will be available? [a. Until database shut down b. Until table deleted c. until session get expired]

2 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)