SQL after the JOIN remove duplicate rows
If I correctly understand, you need this:
select T1.ID, T1.STATUS, t.OWNER from T1
inner join(
select ID, OWNER from T2 group by ID, OWNER
) t
on T1.ID = t.ID
You can use distinct keyward in ur query to get desired result.
select distinct t1.id,t1.status,t2.owner
FROM t1
join t2
on t1.id=t2.id