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
.
Este exercício faz parte do curso
Time Series Analysis in PostgreSQL
Instruções do exercício
- Convert the field
datestring
in thedc_datestrings
table intoDATE
data type.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
-- Convert the datestring data type
SELECT
___ AS dates
FROM dc_datestrings;