日期:2014-05-18  浏览次数:20412 次

条件为两列比值的查询问题!
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