Second

This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics.

Copied!
Second( timestamp )

Description

The Second function extracts the seconds value from a Timestamp.

Parameters

Parameter Type Definition and Requirements

timestamp

Timestamp

The timestamp from which to extract the seconds value.

Returns

A Number which represents the value of the seconds, in the range 0 to 59, from the provided timestamp.

Examples

The following query returns the seconds value from a timestamp:

Copied!
Second(Time('2019-04-29T12:51:17Z'))
17
Query metrics:
  •    bytesIn:  42

  •   bytesOut:  15

  • computeOps:   1

  •    readOps:   0

  •   writeOps:   0

  •  readBytes:   0

  • writeBytes:   0

  •  queryTime: 2ms

  •    retries:   0

\