× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Why don't you just subtract them. That will give you a numeric result with the result being the hours difference in the first two positions, then the minutes, then the seconds. You can that use DIGITS, CONCAT and TIME functions to get it to a TIME format.

with t1 as (select current_time a1,
current_time + 2 hours + 63 minute a2
from
sysibm.sysdummy1)
select t1.*,
SUBSTRING(DIGITS(A2-A1),1,2)||':'||SUBSTRING(DIGITS(A2-A1),3,2)||':'||SUBSTRING(DIGITS(A2-A1),5,2),
TIME(SUBSTRING(DIGITS(A2-A1),1,2)||':'||SUBSTRING(DIGITS(A2-A1),3,2)||':'||SUBSTRING(DIGITS(A2-A1),5,2))
from t1

It's ugly, but it works.

-Tom Stieger
California Fine Wire
Engineer

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Rick.Chevalier@xxxxxxxxxxxxxxx
Sent: Monday, November 15, 2010 9:29 AM
To: midrange-l@xxxxxxxxxxxx
Subject: Difference between two time values in SQL

When I see the answer it will probably be obvious but I have spent over two hours trying to create a query to list records including the difference between two time values. I searched the archives and did a Google search but didn't see the answer. Lots of information on differences between dates though.

How does one go about calculating the difference between two time values in an SQL statement? Do they have to be converted to timestamps first? I want the result to be a time value as well.


Rick Chevalier
IT Software Solutions - Loan Servicing
817-525-7178 (w)



________________________________
Privileged and Confidential. This e-mail, and any attachments there to, is intended only for use by the addressee(s) named herein and may contain privileged or confidential information. If you have received this e-mail in error, please notify me immediately by a return e-mail and delete this e-mail. You are hereby notified that any dissemination, distribution or copying of this e-mail and/or any attachments thereto, is strictly prohibited.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/midrange-l.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.