B
Bob Richardson
I want my drop down list to include only the classes from the selected
event. Here's my query, but it's including every class from every event, not
just the classes in the selected event.
SELECT Classes.ClassCode FROM Classes WHERE Classes.Event=Event ORDER BY
[ClassCode];
I also tried to link the tables, (because there is a one to many
relationship from Events to Classes) but this didn't work either.
SELECT Classes.ClassCode FROM Events INNER JOIN Classes ON
Events.Event=Classes.Event ORDER BY Classes.ClassCode;
event. Here's my query, but it's including every class from every event, not
just the classes in the selected event.
SELECT Classes.ClassCode FROM Classes WHERE Classes.Event=Event ORDER BY
[ClassCode];
I also tried to link the tables, (because there is a one to many
relationship from Events to Classes) but this didn't work either.
SELECT Classes.ClassCode FROM Events INNER JOIN Classes ON
Events.Event=Classes.Event ORDER BY Classes.ClassCode;