date difference in minutes for Ingres

322 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 answers

0
Andrey On BEST ANSWER

Solution was easy

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