The following should work
ID - Key Grade - A,B,C,D...
EDIT: Moved the * 100 and added the 1.0 to ensure that it doesn't do integer division
Select Grade, Count(ID) * 100.0 / ((Select Count(ID) From MyTable) * 1001.0) From MyTable Group By Grade
|
2 | added 1 characters in body | ||
|
The following should work ID - Key Grade - A,B,C,D... EDIT: Moved the * 100 and added the 1.0 to ensure that it doesn't do integer division Select Grade, Count(ID) * 100.0 / ((Select Count(ID) From MyTable) * 1001.0) From MyTable Group By Grade |
||||
|
1 |
|
||
|
The following should work ID - Key Grade - A,B,C,D... Select Grade, Count(ID) / ((Select Count(ID) From MyTable) * 100) From MyTable Group By Grade |
||||