I want to divide a value of a column by the value of another column and display the result as separate column

ex:

project name             total-percent        no.of screen
------------            --------------        -------------
pro-1                     150                     5
pro-2                      50                     3

now i want to divide total-percent by no.of screen and display the result in another column

link|improve this question

1  
what have you tried? Have you tried actually just dividing it? – Jan Dragsbaek Nov 24 '11 at 12:34
feedback

1 Answer

up vote 4 down vote accepted
Select total_percent / no_of_scren as 'result' From yourTableName
link|improve this answer
Indeed it is just a matter of dividing ... ;) – jerome G Nov 24 '11 at 12:37
feedback

Your Answer

 
or
required, but never shown

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