How to convert date difference into years in SQL March 05, 2019 • คtเŦ Add below in your SQL query and it will get date difference and convert into years: (DATEDIFF(MONTH,TABLE.BIRTH_DT,CURRENT_TIMESTAMP)/12... Read More →
How to convert date difference into days in SQL March 05, 2019 • คtเŦ Add below in your SQL query and it will subtract date column from today's date and convert into days: CONVERT(INT, GETDATE() - TA... Read More →