DAY: return the day portion of a date as an integer : Day « Date Timezone « SQL Server / T-SQL






DAY: return the day portion of a date as an integer


2> -- DAY: return the day portion of a date as an integer.
3>
4>
5> SELECT DAY("24 March 1964")
6> GO

-----------
         24

(1 rows affected)
           
       








Related examples in the same category

1.The DAY(), MONTH(), and YEAR() Functions
2.Day(Date) function
3.select DAY('2002-09-30')