In what way does the join not work? Is it failing or not returning any data?
I ran a quick local test that worked fine for me:
SELECT a1.double_col
FROM "@dremio"."all" AS a1
JOIN "@dremio"."all2" AS a2 ON CAST(a1.timestamp_text_col AS DATE) = CAST(a2.timestamp_text_col AS DATE)
Hi, thank for your reply.
Sorry, my mistake, as a dremio noob I was actually executing the query with ‘preview’ and not with ‘run’. Once I checked that, everything just works fine.