toSecond
Converts a date with time to a UInt8 number containing the number of the second in the minute (0-59).
Syntax
toSecond(expr)
Arguments
Arguments | Description |
---|---|
expr | datetime |
Return Type
UInt8
datatype.
Examples
SELECT toSecond(now());
+-----------------+
| toSecond(now()) |
+-----------------+
| 14 |
+-----------------+
SELECT toSecond(toDateTime(1630812366));
+----------------------------------+
| toSecond(toDateTime(1630812366)) |
+----------------------------------+
| 6 |
+----------------------------------+