С NOT EXISTS
:
select t.* from tablename t
where not exists (
select 1 from tablename
where id <> t.id and a = t.a and b = t.b
)
Или с COUNT()
оконной функцией:
select t.id, t.a, t.b
from (
select *, count(id) over (partition by a, b) counter
from tablename
) t
where t.counter = 1
Или с агрегацией:
select max(id) id, a, b
from tablename
group by a, b
having count(id) = 1
Или сself LEFT
соединение, исключающее совпадающие строки:
select t.*
from tablename t left join tablename tt
on tt.id <> t.id and tt.a = t.a and tt.b = t.b
where tt.id is null
Смотрите демо . Результаты:
| id | a | b |
| --- | --- | --- |
| 05 | 1 | 4 |
| 07 | 2 | 5 |