T-Sql

檢查今天是否是月初

  • January 28, 2021

在我的搜尋引擎上,我看到了多個結果來獲得一個月的第一天,但​​我想做一些稍微不同的事情。在 SQL 2016 中,我想檢查今天GetDate()是否是該月的第一天。

我該怎麼做?

IF DAY(GetDate()) = 1
   print 'first of the month'
ELSE
   print 'not first of the month'

或者

IF DATEPART(DAY, GETDATE()) = 1
   print 'first of the month'
ELSE
   print 'not first of the month'

引用自:https://dba.stackexchange.com/questions/284198