Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (29 loc) · 870 Bytes

File metadata and controls

36 lines (29 loc) · 870 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-- timestamp-diff-seconds-inline-function.sql
-- get the difference between 2 timestamps in seconds using inline function
-- Jared Still 2024
set term off
col today format a30
col yesterday format a30
@nls_time_format
set term on
with
function timestamp_diff_seconds( begin_timestamp timestamp, end_timestamp timestamp )
return number is
i_diff_interval interval day(9) to second(6);
begin
i_diff_interval := end_timestamp - begin_timestamp;
return
(extract( day from i_diff_interval )*86400)+
(extract( hour from i_diff_interval )*3600)+
(extract( minute from i_diff_interval )*60)+
(extract( second from i_diff_interval));
end;
dates as (
select systimestamp today, cast(systimestamp -3.14159 as timestamp with time zone) yesterday from dual
)
select
today,
yesterday,
timestamp_diff_seconds( yesterday, today ) as seconds_diff
from dates
/
Morty Proxy This is a proxified and sanitized view of the page, visit original site.