VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / Date and Time Functions / DAY
In This Topic
DAY
In This Topic
DAY( datetime )

Returns an integer representing the DAY from a given datetime.


Remarks

This is the same as using DATEPART( dd, date )

Example

Output: 28
Output: 4, 28, 2007
SELECT MONTH('4/28/2007'), DAY('4/28/2007'), YEAR('4/28/2007')
SELECT DAY('4/28/2007')

See Also