> How can i get time interval only in minutes or in seconds ?
> For example i have '1 month 15 days' and i need these time in
> minutes.
lockhart=# select extract(epoch from interval '1 month 15 days') / 60;
?column?
----------
64800
(1 row)
- Thomas