minutes

Applies NNN minutes modifier to a date/time value.

This function translates to the 'NNN minutes' modifier in SQLite's date and time functions. You can pass a negative integer to subtract minutes.

Example

// Add 30 minutes to the current time
select(TIME().now().minutes(30)).execute()

// Subtract 15 minutes from the current time
select(TIME().now().minutes(-15)).execute()

Return

A KQLiteColumn with the minute modifier applied.

Author

MOHAMMAD AZIM ANSARI

Parameters

minutes

The number of minutes to add. A negative value subtracts minutes.

See also