NOT EXISTS
を使用 :
select t.* from tablename t
where t.vendorid is not null
or not exists (
select 1 from tablename
where itemid = t.itemid and vendorid is not null
)
デモ
をご覧ください。 。
NOT EXISTS
を使用 :
select t.* from tablename t
where t.vendorid is not null
or not exists (
select 1 from tablename
where itemid = t.itemid and vendorid is not null
)
デモ
をご覧ください。 。