Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am newer to sql I have a table:

MyTable

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

I need a query that will give me back all of the rows where column1 * column2 > 10?

share|improve this question
You need to filter using the HAVING keyword, if your SQL supports it. You don't mention which version you're using. – Randolph West Sep 27 '10 at 21:11

4 Answers

up vote 2 down vote accepted

SELECT * FROM MyTable WHERE (column1 * column2) > 10;
You can specify as many columns as you want (within reason) and apply math to them in the WHERE clause.

share|improve this answer
+1: FYI: The brackets aren't necessary – OMG Ponies Sep 27 '10 at 21:13
@OMG Ponies: True, but it makes it slightly more readable, and always putting them in comes in handy when you have many columns. – bluevial Sep 27 '10 at 21:17
But depending on context, a missing bracket can really screw with results because it might not trigger a syntax error. – OMG Ponies Sep 27 '10 at 21:19
Thanks that is simpler than I thought it would be. And Thanks for helping me format the question OMG Ponies – Tbone Sep 27 '10 at 21:26
select column1, column2
from MyTable
where column1 * column2 > 10
share|improve this answer

If I understand you correctly you can do this in the where clause ie select * from mytable where column1*column2 > 10

share|improve this answer
select * from MyTable where Column1 * Column2 > 10
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.