I am having problems figuring this one out..
I am doing a select and I want to know how many of FOO.ROOM members exist with each query.
$select = "select FOO.NAME AS NAME, FOO.EMAIL as EMAIL, FOO.DESC as DESC from FOOBAR FOO where (FOO.JOB = '$this_job');
there will be multiple rows that are accessed in this table. There is a column named FOO.ROOM which contains the room number of the FOO Participant. How can I tell how many people are in each FOO.ROOM without using a for statement, with multiple select statements.
I don't know if this is possible but any help would be appreciated.
MikeJ