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 structural independence and why is it important?
What is db journal file?
Is sql a dbms?
List the ways to get the count of records in a table?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What is pls_integer in pl sql?
What do you mean by “trigger” in sql?
what are the differences between char and varchar? : Sql dba
how many ways to get the current time? : Sql dba
What is the usage of sql functions?
can sql servers linked to other servers like oracle? : Sql dba
Does access use sql?
Why we use join in sql?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
What are instead of triggers?