CommencerCommencez gratuitement

Casting dates

Oftentimes, you will want to conveniently parse a wide variety of date strings with as little code as possible.

In this exercise, you will take on the role of a software engineer at a fintech startup testing a search engine bot. For the purpose of performing financial data aggregation and data quality analysis, you have collected several sample date strings and put them into a table called dc_datestrings.

Cet exercice fait partie du cours

<cours>Time Series Analysis in PostgreSQL</cours>
Voir le cours

Instructions de l’exercice

  • Convert the field datestring in the dc_datestrings table into DATE data type.

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

-- Convert the datestring data type
SELECT 
    ___ AS dates
FROM dc_datestrings; 
Modifier et exécuter le code