blob: fbe42789daa62eb5fea8eab329ecb591a540adba [file] [log] [blame]
explain plan for select * from (
-- simple predicate on a groupping column
select x, y, z from ( select a1, b1, avg(a1) from t1_v t1 group by a1, b1 ) as sq(x, y, z) where x between 100 and 1) t limit 0;