Originally posted by culonbu
...
SQL> delete from foo
2 where f1 in (
3 select f1 from foo
4 where not (f2 between '0' and '9')
5 );
...
Isn't that the same as ...
Code:
Delete From Foo
Where f2 Not Between '0' And '9';