I have two tables in SQL
table1:
date col2
2020-10-25 2
2020-10-20 20
table2:
date col1
25.10.2020 1
20.10.2020 10
As you can see i have different format of date. My question is how can I in Vertica SQL join this two tables on date column in each table ?
Simply I need to join this two tables by date column co for examplle I need table with 3 columns: date, col1, col2 like below:
result:
date col1 col2
2020-10-25 1 2
2020-10-20 10 20