will give you the number of the month. For example December will return 12.
will give you the day number.
will give you the year.
Code:
MonthName(Month(Now))
will give you the name of the month.
Code:
Hour(Now), Minute(Now), Second(Now)
all return their respective data.
returns the week number.
returns the week day number (Sunday = 1, Monday = 2, etc.).
Code:
WeekDayName(WeekDay(Now))
Returns the name of the weekday (Sunday, Monday, etc.).
Now just returns the current time and date.
Date could also be used for the date functions as well as any date in string or datetime format. (i.e. day('1/3/03'))
That is all I can think of right off the top of my head, but I am sure there are at least a few more.
Chris