where语句中的SQL Multiply列

时间:2010-09-27 21:07:49

标签: sql

我比sql更新我有一张桌子:

MyTable的

column1  column2
-----------------
5        3 
2        2

我需要一个查询,它会返回所有行where column1 * column2 > 10

4 个答案:

答案 0 :(得分:3)

SELECT * FROM MyTable WHERE (column1 * column2) > 10;
您可以根据需要指定任意数量的列(在合理范围内),并在WHERE子句中对它们应用数学。

答案 1 :(得分:0)

select column1, column2
from MyTable
where column1 * column2 > 10

答案 2 :(得分:0)

如果我理解正确,您可以在where子句中执行此操作,即select * from mytable其中column1 * column2> 10

答案 3 :(得分:0)

select * from MyTable where Column1 * Column2 > 10