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
how to get help information from the server? : Sql dba
How does sql profiler work?
Why do we use procedures in sql?
What is sql profiler in oracle?
How to fetch alternate records from a table?
Explain what is sql?
How does join work in sql?
What are the uses of sysdate and user keywords?
What is a primary key called that is made up of more than one field?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
What is lexical units in pl sql?
What are schema-level triggers?
Can we create table inside stored procedure?
What is varray in pl sql?
What is composite primary key in sql?