I have a column Date with this format: 2019-07-01T07:03:05.612289+02:00
And I need chage thit final form yyyy-mm-ss (in this example 2019-07-01)
Unfortunately this code does nothing:
SELECT Format ([Date], "yyyy / mm / dd")
FROM table_1;
Thaks for tips