How do i get the following script to divide by eight?
SELECT COUNT(*)
FROM myTable
WHERE Class = 'Art'
The result returns me 499, i want this figures to by divided by 8
so 499/8 = 62
I've tried this but it doesn't work...
SELECT *
(SELECT COUNT(*)
FROM myTable
WHERE Class = 'Art'
)/8