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.
Remarks
SET SECONDS is scoped to the current data session.
Example
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.
В | Copy Code |
---|---|
SET SECONDS ON CLEAR ? DATETIME( ) && Displays time value with the seconds portion SET SECONDS OFF && Displays time value without the seconds portion ? DATETIME( ) |