date difference in minutes for Ingres

330 Views Asked by At

I have DB (ingres 11) which works with ANSI i need to findout difference in minutes between dates, I have statement

SELECT  top 10  date('now') - '06.07.2017 10:20:02'

itscalculating and returning me this 186 days 22 hrs 43 mins how i can convert it to number of minutes ?

1

There are 1 best solutions below

0
On BEST ANSWER

Solution was easy

SELECT  top 10  TIMESTAMPDIFF(MINUTE,date('now'),'06.07.2017 10:20:02')