In Access, the Hour function returns a number between 0 and 23, inclusive, that represents the hour of the day corresponding to the time provided as an argument.
The syntax for the Hour function is:
Hour ( time )
The required time argument is any numeric or string expression, that can represent a time. If number is Null, this function returns a Null.
Examples
|
VBA Code
|
This example uses the Hour function to obtain the hour from a specified time. Now the MyHour variable would contain the value of 15.
SQL query
You can also use the Hour function in a query.
|