how to SELECT
rows based on the calculated value field from the same table?
table A
-----------------------
|id | col2 | col3 |
---------------------
| 1 | 23 | 33 |
| 2 | 33 | 24 |
| 3 | 11 | 4 |
I have tried
SELECT id, (col2 + col3) as NV WHERE NV > 50
Unfortuantely, can't get it workig... Thanks for help...