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 are the features of pl sql?
Can a table have no primary key?
Why commit is not used in triggers?
How do you create a unique index?
What is on delete restrict?
How do you exit in sql?
What does over partition by mean in sql?
Can we create clustered index without primary key?
What is oracle pl sql developer?
What is transaction control language (tcl)?
How to take user input in pl sql?
Is sql harder than python?
what is table? : Sql dba
Is left join and outer join same?
What is the difference between delete and truncate commands?