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

Obtenir le minimum suivant, supérieur ou égal à une valeur donnée pour chaque groupe

Table dérivée a récupère les valeurs minimales de table1 étant donné refid et intVal du tableau2 ; la requête externe ne récupère que someValue.

select a.refid, a.intVal, a.nextGt, table1.SomeVal
from
(
    select table2.refid, table2.intval, min (table1.intVal) nextGt
      from table2
      left join table1
        on table2.refid = table1.refid
       and table2.intVal <= table1.intVal
     group by table2.refid, table2.intval
) a
-- table1 is joined again to retrieve SomeVal 
left join table1
  on a.refid = table1.refid
 and a.nextGt = table1.intVal

Voici Sql Fiddle avec test en direct .