MySQL SECOND() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MySQL SECOND() Function

❮ MySQL Functions

Example

Return the second portion of a date value:

SELECT SECOND("2017-06-20 09:34:00.000023");
Try it Yourself »

Definition and Usage

The SECOND() function returns the second portion of a date value (from 0 to 59).

Syntax

SECOND(date)

Parameter Values

Parameter Description
date Required. The time or datetime value from which to extract the second

Technical Details

Works in: MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23

More Examples

Example

Return the second portion of a date value: 

SELECT SECOND("23:59:59");
Try it Yourself »

❮ MySQL Functions