Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Subtract exactly a year

First I want to thank everyone for helping me, It gave me a lot of ideas on how I should do this and I came up with my own method I just need help putting it into a query

I want the user to input a date, then get the current year. subtract the two and then do the dateadd that everyone was posting. Is this possible and what is the best way to do it?

year(getdate())-@DYYYY=Y 
dateadd(year,-Y,getdate())
like image 495
MyHeadHurts Avatar asked Nov 22 '10 15:11

MyHeadHurts


1 Answers

Use this:

dateadd(year, -1, getdate())
like image 83
Philip Kelley Avatar answered Sep 24 '22 02:09

Philip Kelley