条件为两列比值的查询有关问题

条件为两列比值的查询问题!x和y为table1中的两列,想进行如下操作:deletefromtable1wherex 2andy/x 100其

条件为两列比值的查询问题!
x和y为table1中的两列,想进行如下操作:
delete   from   table1   where   x <2   and   y/x   > 100
其中的y/x> 100如何写才能正确表示y的值除x的值大于100的意思?望各位朋友赐教!谢谢!!

[解决办法]
delete from table1 where x <2 and y > 100*x