79178096

Date: 2024-11-11 14:54:15
Score: 1
Natty:
Report link

Andrew's answer above worked; I adapted it to cater for single digit days:

SELECT TITLE, System_Only, Budget_Date
,IF(LEN(Budget_Date) <=10,
    to_date(CONCAT(0,Budget_Date),'dd MMM yyyy'),
    to_date(Budget_Date,'dd MMM yyyy')
) as FOrmatted
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DaarioNaharis