: SELECT a.x/b.y FROM vals a, (SELECT y FROM vals WHERE y > 0) b WHERE (a.x: / b.y) > 1;
How much of a performance hit is there when using a select in the FROMclause? Is it even noticeable? How much better is it to create a staticview?
-Dan