I have a table that log salary-increase-process have
fields: autoid, old_salary, acctno
and table EMP: acctno, name, salary
I want to list count increase-salary of employees, each have
old_salary, new_salary.
Help me with SELECT statement, please!



I have a table that log salary-increase-process have fields: autoid, old_salary, acctno and table..

Answer / abhisudipta

select distinct a.acctno,b.name,a.old_salary,b.salary,
nvl((sum(b.salary)-sum(a.old_salary)),0) count_increase
from salary_increase_process a,emp b
where a.acctno=b.acctno
group by a.acctno,b.name,a.old_salary,b.salary;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

what is difference between foreign key and reference key

3 Answers   AZTEC, Infosys,


hi friends, I have a table A col as status|NUM and value as open |1 open |2 close |3 close |3 the O/P should be open|close 1 |3 2 |4

1 Answers   CTS,


What are the different editions of oracle?

0 Answers  


Explain the different normalization forms?

0 Answers  


what are corelated subqueries

1 Answers   Global Infotech,






How to delete an existing row from a table in oracle?

0 Answers  


Define the terms primary key foreign key and also the difference between primary and the unique key

2 Answers  


How to use "while" statements in oracle?

0 Answers  


Why do I get java.lang.abstractmethoderror when trying to load a blob in the db?

0 Answers  


How to unlock the sample user account in oracle?

0 Answers  


How to name query output columns in oracle?

0 Answers  


How to insert a record into a table?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • 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)