I have two tables:- T1 and T2 T1 has a column of Date Type: CT1 T2 has a column of Date Type: CT2 Note T1 and T2 has other columns too.
I want to left outer join T1 and T2 with join condition:- trunc(CT1,'Mi')=trunc(CT2,'Mi')(+). Note we have other join conditions too but irrelevant to specify here.
when I try to run this SQL, I receive error ora 936:missing expression. Any idea what is wrong here?