snowflake.snowpark.functions.timestamp_ntz_from_parts¶
- snowflake.snowpark.functions.timestamp_ntz_from_parts(date_expr: ColumnOrName, time_expr: ColumnOrName) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/functions.py#L3286-L3315)¶
- 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: