× 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.



Not SQL, but this works:

wSeconds = %diff(%timestamp(S1DATE2): %timestamp(S1DATE1): *seconds)
// get days. hours, minutes, & seconds
S1DAYS = %div(wSeconds: 86400);
wSeconds = %rem(wSeconds: 86400);
S1HOURS = %div(wSeconds: 3600);
wSeconds = %rem(wSeconds: 3600);
S1MINUTES = %div(wSeconds: 60);
S1SECONDS = %rem(wSeconds: 60);
// get duration as char field
S1DATE = %editc(S1YEARS: 'X') + '-'
+ %editc(S1MONTHS: 'X') + '-'
+ %editc(S1DAYS: 'X') + '-'
+ %editc(S1HOURS: 'X') + '.'
+ %editc(S1MINUTES: 'X') + '.'
+ %editc(S1SECONDS: 'X') + '.000000';
(years & months is a bit more convoluted but probably outside your range of need.)


On 4/26/2017 4:33 PM, Rob Berendt wrote:
Actually I can get all but formatting that last column as a time.
Picture this
ts1-ts2 equals these digit representations of a time
000059
001904
...


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

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.