質問

On my search engine I have seen multiple results to get the first day of a month, but I want to do something slightly different. In SQL 2016, I want to check if Today GetDate() is the first day of the month.

How would I do that?

役に立ちましたか?

解決

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

Or

IF DATEPART(DAY, GETDATE()) = 1
    print 'first of the month'
ELSE
    print 'not first of the month'
ライセンス: CC-BY-SA帰属
所属していません dba.stackexchange
scroll top