Thanks, but this gives me the total number of records which is 119. In the db some individuals signed up for more than 2 classes, I trying to figure out the total number of individuals which should be 50.
When I add the GROUP BY:
SELECT COUNT(*) AS number FROM signup GROUP BY lname,fname
It gives me the number 3, which is how many classes the first individual sign up for. I want to count the number of rows that this statement returned and not the number that particular row.
Example it returned:
3
1
2
2
1
I want to be able to display the total number of rows which is "5".
This will give me the total number of students we served.
Any ideas? I might be going about this the wrong way???
Thanks