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

Explain an exception and its types?

0 Answers  


How do you find current date and time in oracle?

0 Answers  


What is a system tablespace?

0 Answers  


After using set unused can we enable the column again to use? Please give me some answers....

1 Answers   Maveric,


How would you change old and new values in an insert, delete and update triggers?

0 Answers  






What happens to the data files if a tablespace is dropped?

0 Answers  


What is a sub query? Describe its types?

0 Answers  


how will I find the first 5 highest salaried employees in each dept in oracle.

22 Answers   IBM,


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

4 Answers   TCS,


What is Network Database link ?

1 Answers  


what are the advantages of running a database in NO archive log mode?

1 Answers  


How do I connect to oracle?

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)