我比sql更新我有一张桌子:
column1 column2
-----------------
5 3
2 2
我需要一个查询,它会返回所有行where column1 * column2 > 10
?
答案 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