Is there an easy way convert a date format from ('2020-11-17') to November 17,2020 in snowflake.
Thanks
I SOLVED THIS PROBLEM USING BELOW SYNTAX:
TO_CHAR(date,'MMMM')||' '||TO_CHAR(date,'DD')||','||TO_CHAR(date,'yyyy')
You should consider using:
TO_CHAR(date, 'MMMM DD yyyy')
Copyright © 2021 Jogjafile Inc.
I SOLVED THIS PROBLEM USING BELOW SYNTAX: