When loading data into a table that captures the load time in a column with a default value of either CURRENT_TIME() or CURRENT_TIMESTAMP() what will occur?
When loading data into a table that captures the load time in a column with a default value of either CURRENT_TIME() or CURRENT_TIMESTAMP() what will occur?
When data is loaded into a table with a column that has a default value of CURRENT_TIME() or CURRENT_TIMESTAMP(), the default value is set at the time the statement (e.g., COPY statement) is executed. Therefore, all rows loaded by that specific statement will get the same timestamp value, corresponding to the moment the statement was executed. This ensures uniformity for the load time across all rows inserted by the same operation.
Validated and a bit helpful: https://docs.snowflake.com/en/user-guide/data-load-transform#current-time-current-timestamp-default-column-values
Answer is D and is validated
I think C is the Answer
Answer is D