आप एक सेल्फ जॉइन और विंडोज़ फंक्शन को मिक्स कर सकते हैं
सरलीकरण मैं इस तालिका को इस नमूना मान के साथ लेता हूं:
create table t ( a int, b int);
insert into t values
( 1, 1),
( 2, Null),
( 3, Null),
( 4, 2 ),
( 5, Null),
( 6, Null);
आपकी क्वेरी में a
है trunc_u
और b
क्या आपका id
है .प्रश्न है:
with cte as (
select
t1.a,
coalesce( t1.b, t2.b, 0) as b,
rank() OVER
(PARTITION BY t1.a ORDER BY t2.a DESC) as pos
from t t1
left outer join t t2
on t2.b is not null and
t2.a < t1.a
)
select a, b
from cte
where pos = 1;
और परिणाम:
| A | B |
---------
| 1 | 1 |
| 2 | 1 |
| 3 | 1 |
| 4 | 2 |
| 5 | 2 |
| 6 | 2 |