Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle:unisci a sinistra una tabella molto grande e limita le righe unite a una con il valore del campo più grande

prova questo

SELECT m.*,
       (select s.s_field 
          from t_sub s
         where s.m_id = m.m_id
           and s.s_order = (select max(s_order) from t_sub where t_sub.m_id = s.m_id)
           and rownum = 1)
FROM t_main m

oppure puoi provare questo (è il tuo codice ma alcune modifiche)

SELECT m.*,
      (select s.s_field from 
       (SELECT s_field, m_id
          FROM t_sub
         --where t_sub.m_id = m.m_id
         order by s_order DESC) s
        where s.m_id = m.m_id
          and rownum = 1)
FROM t_main m