MINUTES_ADD (Lakehouse v2)
Adds a specified number of minutes to a datetime.
Analyze Syntax
Section titled “Analyze Syntax”func.minutes_add(<datetime>, <n>)Analyze Examples
Section titled “Analyze Examples”func.minutes_add('2024-01-01 10:00:00', 45)
┌───────────────────────┐│ '2024-01-01 10:45:00' │└───────────────────────┘SQL Syntax
Section titled “SQL Syntax”MINUTES_ADD(<datetime>, <n>)SQL Examples
Section titled “SQL Examples”SELECT MINUTES_ADD('2024-01-01 10:00:00', 45);
┌─────────────────────┐│ 2024-01-01 10:45:00 │└─────────────────────┘