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

ORA-01799 :une colonne ne peut pas être jointe à une sous-requête

vous pouvez réécrire cela en poussant la sous-requête afin qu'elle ne soit pas jointe externe :

select Count(C.setid)
  from mycustomer C
       left outer join (select *
                          from mycustoption co
                         where co.effdt <= (select Max(COI.effdt)
                                              from mycustoption COI
                                             where COI.setid = co.setid
                                               and COI.cust_id = co.cust_id
                                               and COI.effdt <= sysdate)) co
                    on ( C.setid = CO.setid
                         and C.cust_id = CO.cust_id )