Hi;
Say I am dealing with three data columns in a MySQL table:
STUDENTID, SEASON, SCORE.
Compliance with the testing has been unreliable, so I don't always have FALL, or WINTER, or SPRING data for each kid.
I want to pull only the data where SCORES do exist for each kid in all three seasons.
Subsequent work with the data can continue from a two-dimensional array $SCOREarray[STUDENTID][SEASON]
The MySQL version I have to work with is 3.23.45, so I don't have the option of doing subqueries.
I would appreciate any suggestions as to how to approach this as I am feeling rather thick-headed this morning.
Thanks.