select a, Vibrat( a ) from tab where Vibrat( a ) is not null
With T as ( select /*+ Materialize*/ a, Vibrat( a ) Func from tab ) select * from T where Func is not null