I have a date column and a time column and I'd like to make a datetime/timestamp.
I've tried
Date+Time
but I get:
SQL compilation error: error line 4 at position 14 Invalid argument types for function '+': (DATE, TIME(9))
I have a date column and a time column and I'd like to make a datetime/timestamp.
I've tried
Date+Time
but I get:
SQL compilation error: error line 4 at position 14 Invalid argument types for function '+': (DATE, TIME(9))
You can use TIMESTAMP_NTZ_FROM_PARTS(date, time), e.g.