how to insert values like 10:10:00,30:25:00 etc.into table
after insert how can i sum the above insert values to get
the result as 40:35:00
Answer Posted / avi007
select sum(hiredate,'hh') ||':'|| sum(hiredate,'mm')
||':'|| sum(hiredate,'ss') from emp;
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is vector point function?
What are the various restrictions imposed on view in terms of dml?
What is the execution plan in sql?
How can I make sql query run faster?
what is dbms? : Sql dba
How to display the current date in sql?
What is range partitioning?
what is error ora-03113: end-of-file on communication channel?
How do I restart sql?
Is pl sql a programming language?
What is difference between left and right outer join?
What are the constraints available in sql?
Explain the uses of control file.
Can a foreign key have a different name?
Can a table have no primary key?