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 the primary use of normalization?
When is a declare statement required?
What do we need to check in database testing?
Can we perform dml in function?
What is difference between sql and oracle?
How does index help in query performance?
List the different type of joins?
What is input buffer in sql*plus?
Define commit?
What is a behavioral trigger?
State few characteristics of pl/sql?
what are date and time data types in mysql? : Sql dba
what is sp_pkeys? : Transact sql
how can we destroy the session, how can we unset the variable of a session? : Sql dba
How do I run a sql trace?