I suggest reading the entire section(8.5.4. Interval Input) as well as 8.5.5. Interval Output.
I did, but either missed something or did not interpret it correctly.
> > > > > Is there cast magic that does what I want? > > The only way I can think of extract the epoch from the interval and > pass > to a function that builds what you want. > > > I was afraid of that. Must decide if it's worth the time. > If you don't mind decimal minutes, a quick and dirty solution is:
select extract(epoch from (now() - '2025-01-07 14:15:32'::timestamptz)) / 60;
1301.5244606333333333
That's what I currently do, using to_char() to add commas and display 3 decimal places.