व्युत्पन्न तालिका a
दिए गए refid
. तालिका 1 से न्यूनतम मान पुनर्प्राप्त करता है और intVal
तालिका 2 से; बाहरी क्वेरी केवल 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
यहां लाइव टेस्ट के साथ Sql Fiddle है ।