Links are not active on this page.
 SET SECONDS Command

Specifies whether seconds are displayed in the time portion of a DateTime value.

SET SECONDS ON | OFF

Parameters

ON

(Default) Specifies that seconds are displayed in DateTime values.

OFF

Specifies that seconds are not displayed in DateTime values.

Expand imageRemarks

SET SECONDS is scoped to the current data session.

Expand imageExample

The following example demonstrates the effect of the SET SECONDS setting on the time value returned by DATETIME( ). When SET SECONDS is ON, the time value is displayed with the seconds portion. When SET SECONDS is OFF, the time value is displayed without the seconds portion.

 CopyCode imageCopy Code
SET SECONDS ON
CLEAR
? DATETIME( )  && Displays time value with the seconds portion
SET SECONDS OFF  && Displays time value without the seconds portion
? DATETIME( )

Expand imageSee Also