Oracle
 sql >> Base de données >  >> RDS >> Oracle

Appliquer le filtre dans Oracle View

Si j'ai compris maintenant, nous avons besoin de not exists ici,

select * 
  from IS_ID t1
  where not exists ( select 1
                       from IS_ID t2
                      where t1.identifier = t2.identifier
                        and (MEMBER_DESCR = 'O' and member_ratio < -5))