I think you can further simplify the solution suggested by ulrich to get the required results...
select *
from vt_tst
where col2/100 = (
select min(col2) / 100
from vt_tst
where col2/100 >= (add_months(cast('2012-01-30' as date),1))/100
)
↧