Ramzess II
Registered User.
- Local time
- Today, 03:58
- Joined
- Apr 7, 2004
- Messages
- 32
Hello guys!
Problem - There are two tables with such fields:
1) Schools
SchoolID; SchoolName;
2) Performances
PerfID, SchoolID; PerfName; PlayDate;
(in real life there are much more fields in each table but I skip it to make things less complicated)
These two tables has a one to many relationship, like many performances for each school.
Every year I have to print out the school table so it contains fields PerfName and PlayDate as seperate columns, like this:
SchoolID; SchoolName; PerfName; PlayDate;
By using query it seems to work fine as far as I have one performance record for each school, but since there are many different performances played in every school and it makes one to many relationship for those two tables really work, it leaves me confused on how to get such query.
Thank you guys in advance!
Problem - There are two tables with such fields:
1) Schools
SchoolID; SchoolName;
2) Performances
PerfID, SchoolID; PerfName; PlayDate;
(in real life there are much more fields in each table but I skip it to make things less complicated)
These two tables has a one to many relationship, like many performances for each school.
Every year I have to print out the school table so it contains fields PerfName and PlayDate as seperate columns, like this:
SchoolID; SchoolName; PerfName; PlayDate;
By using query it seems to work fine as far as I have one performance record for each school, but since there are many different performances played in every school and it makes one to many relationship for those two tables really work, it leaves me confused on how to get such query.
Thank you guys in advance!