Returns the seconds value of the TIMESTAMP argument.
SECOND( timestamp-expression )
timestamp-expression The TIMESTAMP value.
SMALLINT
Returns a number from 0 to 59 corresponding to the seconds component of the given TIMESTAMP argument value.
SQL/2008 Vendor extension.
The following statement returns the value 25.
SELECT SECOND( '1998-07-13 21:21:25' );