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