snowflake.snowpark.functions.timestamp_ntz_from_parts¶
- snowflake.snowpark.functions.timestamp_ntz_from_parts(date_expr: ColumnOrName, time_expr: ColumnOrName) Column[source]¶
- snowflake.snowpark.functions.timestamp_ntz_from_parts(year: ColumnOrName | int, month: ColumnOrName | int, day: ColumnOrName | int, hour: ColumnOrName | int, minute: ColumnOrName | int, second: ColumnOrName | int, nanosecond: ColumnOrName | int | None = None) Column
Creates a timestamp from individual numeric components. The function can be used to create a timestamp from a date expression and a time expression.
Example 1:
Example 2: