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


Please Help Members By Posting Answers For Below Questions

What are different types of sql commands?

508


What is materialized view in sql?

461


What type of join is sql join?

529


What is pragma in sql?

618


What does the file extension accdb stand for?

545






Is delete faster than truncate?

543


What is the process of copying data from table a to table b?

594


Can we delete column in sql?

557


how can we destroy the cookie? : Sql dba

555


How to return an array from java to pl/sql?

587


What is memory optimized table?

571


What is execute immediate?

547


How many subqueries can be nested in a statement?

501


What is pl sql block structure?

538


How do I count rows in sql?

557