Question

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?

Était-ce utile?

La solution

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'
Licencié sous: CC-BY-SA avec attribution
Non affilié à dba.stackexchange
scroll top