0
Hi Mangesh,
try with below script
select distinct table1.* from table1 JOIN table2 on table1.id=table2.id where cast(date of reg as datetime)> (select distinct Date of joining from Table2)
0
Hi,
Select * from Table1 t1 inner join Table2 t2 on t1.reg > t2.join
before executing the above, convert the t1.reg to datetime.