Odvozená tabulka a
načte minimální hodnoty z tabulky 1 zadané refid
a intVal
z tabulky 2; vnější dotaz načte pouze nějakou hodnotu.
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
Zde je Sql Fiddle s živým testem .