seconds
Applies NNN seconds modifier to a date/time value.
This function translates to the 'NNN seconds' modifier in SQLite's date and time functions. You can pass a negative integer to subtract seconds.
Example
// Add 45 seconds to the current time
select(TIME().now().seconds(45)).execute()
// Subtract 20 seconds from the current time
select(TIME().now().seconds(-20)).execute()Content copied to clipboard
Return
A KQLiteColumn with the second modifier applied.
Author
MOHAMMAD AZIM ANSARI
Parameters
seconds
The number of seconds to add. A negative value subtracts seconds.