I went through the Snowflake docs and found that the default date_output_format in snowflake is "YYYY-MM-DD"
.
We can change it to per session as (alter session set date_output_format = 'DD-MON-YYYY'
).
But I want to change the default value irrespective of the session. So that whenever I open the snowflake and query the date should be in the format "DD-MON-YYYY"
.
Can anyone please help me, if it's possible to do so?