how to retrieve daily sal from emp table in oracle 10g

Answers were Sorted based on User's Feedback



how to retrieve daily sal from emp table in oracle 10g..

Answer / anuradha

Select empno,ename,sal, sal/30 "Daily_Sal" From emp;

Is This Answer Correct ?    4 Yes 1 No

how to retrieve daily sal from emp table in oracle 10g..

Answer / shailesh

I think what Anuradha has suggested is fine but it may not
produce accurate results. I think following query should
return reliable results based on number of days present in
month.

select trunc(salary/ to_number(extract (day from last_day
(sysdate))),2) as daily_sal,salary from employees

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Oracle General Interview Questions

How to create a new user account in oracle?

0 Answers  


How many memory layers are in the shared pool?

1 Answers  


What is sharded cluster?

0 Answers  


Find all employees in Dept “Marketing”.

2 Answers  


How to loop through a cursor variable?

0 Answers  






IS it possible to built the oracle database without setting the kernal parameters?

0 Answers   EDS,


3. Display all the client numbers in the ORDER table. Remove duplicates.

1 Answers   Wipro,


When do we use group by clause in a sql query?

0 Answers  


What is transaction control statement and how many types of transaction control statement in Oracle?

0 Answers   MCN Solutions,


how do u know the total no of rows in a table?

6 Answers  


Explain the use of log option in exp command.

0 Answers  


11. Display the client number and name and the client number and name of the person who referred that client.

0 Answers   Wipro,


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)