Good Day!
I am working on an audition tracking database that was implemented before I stared working here. It was originally designed poorly with no normalization and each audition got a new record regardless if that individual has taken one before. I have since split it into five tables.
For my Student Table I have;
LName
FName
MInit
ID
By migrating the data I have about 2000 duplicate students.
My Audition Table is
ID
studID
AuditionDate
Remarks
scores...
I would like to find a way to run a query to find duplicates (easy) and to change the duplicates in the Auditon table. For example;
I would query tblStudents and get;
Doe, John P 654
Doe, John P 7822
Doe, John P 1382
how to I update tblAudtions so that 7822 and 1382 are now 654?
I am working on an audition tracking database that was implemented before I stared working here. It was originally designed poorly with no normalization and each audition got a new record regardless if that individual has taken one before. I have since split it into five tables.
For my Student Table I have;
LName
FName
MInit
ID
By migrating the data I have about 2000 duplicate students.
My Audition Table is
ID
studID
AuditionDate
Remarks
scores...
I would like to find a way to run a query to find duplicates (easy) and to change the duplicates in the Auditon table. For example;
I would query tblStudents and get;
Doe, John P 654
Doe, John P 7822
Doe, John P 1382
how to I update tblAudtions so that 7822 and 1382 are now 654?