datetime.date.eu_dotDay.Month.Year with dot separators. Common in Germany, Austria, Switzerland, and Eastern European countries.
$ finetype infer -i "15.01.2024"
→ datetime.date.eu_dotSELECT finetype('15.01.2024');
-- → 'datetime.date.eu_dot'strptime({col}, '%d.%m.%Y')::DATE
-- Format: %d.%m.%Y-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS DATE) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'datetime.date.eu_dot';{
"$id": "https://meridian.online/schemas/datetime.date.eu_dot",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Day.Month.Year with dot separators. Common in Germany, Austria, Switzerland, and Eastern European countries.",
"examples": [
"15.01.2024",
"31.12.2019"
],
"maxLength": 10,
"minLength": 10,
"pattern": "^\\d{2}\\.\\d{2}\\.\\d{4}$",
"title": "European Date (dot-separated)",
"type": "string",
"x-finetype-broad-type": "DATE",
"x-finetype-format-string": "%d.%m.%Y",
"x-finetype-transform": "strptime({col}, '%d.%m.%Y')::DATE"
}15.01.202431.12.2019