I have a table of attendance.
basically it is like:
A B C
1 1 1/1/04
1 2 1/1/04
1 3 1/2/04
1 2 2/4/04
1 2 3/2/04
1 3 3/5/04
1 1 4/5/04
1 2 4/8/04
2 3 1/1/04
2 3 2/4/04
2 1 2/5/04
2 1 3/9/04
2 1 4/5/04
2 3 5/5/04
A is the person_ID
B is the event_ID
C is the event_date
I have table of Person and an event table
The person table contains just person_ID and Fullname
The event table contains just event_ID and eventname
i want to create a list of unique items so that person 1 will have a list of 1,2,3 and person 2 will have a list of 1,3
Right now i keep trying to get a list for them but it keeps giving me each one as if they are all unique
suggestions?
basically it is like:
A B C
1 1 1/1/04
1 2 1/1/04
1 3 1/2/04
1 2 2/4/04
1 2 3/2/04
1 3 3/5/04
1 1 4/5/04
1 2 4/8/04
2 3 1/1/04
2 3 2/4/04
2 1 2/5/04
2 1 3/9/04
2 1 4/5/04
2 3 5/5/04
A is the person_ID
B is the event_ID
C is the event_date
I have table of Person and an event table
The person table contains just person_ID and Fullname
The event table contains just event_ID and eventname
i want to create a list of unique items so that person 1 will have a list of 1,2,3 and person 2 will have a list of 1,3
Right now i keep trying to get a list for them but it keeps giving me each one as if they are all unique
suggestions?