By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
declare @t1 table (Col1 smallint, Col2 char(2), Col3 smallint);
insert @t1 values
(0, 'AA', 1),
(0, 'AB', 2),
(1, 'AC', 1);
declare @t2 table (Col1 smallint, Col2 char(2), Col3 smallint);
insert @t2 values
(0, 'AA', 1),
(0, 'AB', 2),
(0, 'AC', 2);
with cte as (
select *, 't1' as tbl from @t1
union all
select *, 't2' as tbl from @t2
)
select Col1, Col2, Col3, min(tbl) as tbl
from cte
group by Col1, Col2, Col3
order by Col1, Col2, Col3;
Col1 | Col2 | Col3 | tbl |
---|---|---|---|
0 | AA | 1 | t1 |
0 | AB | 2 | t1 |
0 | AC | 2 | t2 |
1 | AC | 1 | t1 |