A SQL like this

select T1.column1 , ....
from T1
where T1.a not in
(select T2.b from T2 where ....)


The explain shows a full table scan on T2 . And I want to
use a hint to force a index range scan on T2 . How to write ?

Thanks for your time