I have two tables: T1 and T2
- T1 has a DATE column: CT1
- T2 has a DATE column: CT2
I want to left outer join T1 and T2 with join condition:
trunc(CT1,'Mi')=trunc(CT2,'Mi')(+)
When I try to run this SQL, I receive error ORA 00936:missing expression.
Any idea what is wrong here?