Last active
August 29, 2015 14:03
-
-
Save KWKdesign/ca6db1102a1e11d93a41 to your computer and use it in GitHub Desktop.
Schemaverse: Last Tic Duration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
( select toc from my_events | |
where public and action = 'TIC' | |
and tic = ( select last_value-1 from tic_seq ) | |
)::time - | |
( select toc from my_events | |
where public and action = 'TIC' | |
and tic = ( select last_value-2 from tic_seq ) | |
)::time | |
; | |
-- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment