This function extracts the second portion of the current time.
Return value
The return value is an Integer.
Example
If the current time is 4:55:03, the return value of the following statement is 3.
Second()
This function extracts the second portion of a specified TimeStamp.
Parameter
a - A TimeStamp value.
Return value
The return value is an Integer.
Example
Suppose the datetime is Oct. 15,1999 10:15:17, the return value of the following statement is 17.
Second(ToDateTime(1999, 10, 15, 10, 15, 17 ))
This function extracts the second portion of a specified time.
Parameter
a - A Time value.
Return value
The return value is an Integer.
Example
Suppose the time is 7:51:59, the return value of the following statement is 59.
Second(ToTime(7, 51, 59))