0

Is there an easy way convert a date format from ('2020-11-17') to November 17,2020 in snowflake.

Thanks

Zoom
  • 85
  • 1
  • 11

2 Answers2

1

You should consider using:

TO_CHAR(date, 'MMMM DD yyyy')
Onyambu
  • 67,392
  • 3
  • 24
  • 53
0

I SOLVED THIS PROBLEM USING BELOW SYNTAX:

TO_CHAR(date,'MMMM')||' '||TO_CHAR(date,'DD')||','||TO_CHAR(date,'yyyy')
Ahmed
  • 796
  • 1
  • 5
  • 16
Zoom
  • 85
  • 1
  • 11