C
Carlo
I have a databse recording the details of Adults and Children:
tbl Adult Users
=========
Adult User ID (PK, Autonumber)
Adult First Name
Adult Last Name
etc
tbl Child Users
=========
Child User ID (PK, Autonumber)
Child First Name
Child Last Name
etc
I also store details of events that go on at our community centre in a
separate table, and then need to record the attendance of the adults or
children in a third table. However, I am wondering how I do that, given that
the attendence table would presumably look something like:
tbl Event Attendance
=============
Attendance Ref Number (PK, Autonumber)
Event Ref Number (FPK of the event table)
+ an attendee recording field
However, the primary keys for both the adult and children tables are std
autonumbers, and in any case, how would I select the appropriate attendee
from a list?
tbl Adult Users
=========
Adult User ID (PK, Autonumber)
Adult First Name
Adult Last Name
etc
tbl Child Users
=========
Child User ID (PK, Autonumber)
Child First Name
Child Last Name
etc
I also store details of events that go on at our community centre in a
separate table, and then need to record the attendance of the adults or
children in a third table. However, I am wondering how I do that, given that
the attendence table would presumably look something like:
tbl Event Attendance
=============
Attendance Ref Number (PK, Autonumber)
Event Ref Number (FPK of the event table)
+ an attendee recording field
However, the primary keys for both the adult and children tables are std
autonumbers, and in any case, how would I select the appropriate attendee
from a list?