Как получить записи с февраля этого месяца по январь следующего в SQL server
I need to write Sql Query that returns records from begining of current year's Feb month to end of next year's Jan month. I only know how to get begining of current year and end of following year. My query is SELECT DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()), 0) SELECT DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()) + 2, -1)
Что я уже пробовал:
SELECT DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()), 0) SELECT DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()) + 2, -1)