GitHub - asg017/sqlite-jiff
sqlite-jiff
Work-in-progress date-time SQLite extension that will support timezones, complex durations, and daylight savings calculations, based on the jiff library.
.load ./jiff0
select jiff_duration(
'2024-11-02T01:59:59[America/Los_Angeles]',
'2024-11-02T02:00:01[America/New_York]',
'minutes'
) as result;
/*
┌──────────────────┐
│ result │
├──────────────────┤
│ 179.966666666667 │
└──────────────────┘
*/
select jiff_duration(
'2024-11-03T01:59:59[America/Los_Angeles]',
'2024-11-03T0...
Read more at github.com