I have two tables: "Athlete" and "ExtendedBio". They have a One to One relationship at the field AthleteID. There are over 15,000 athelete's in the database, but there are only 6000+ Extended Bio's--and I need to have an extended Bio for each Athlete (even if it's blank). How can I create an update query that will update all the AhtleteID's in the ExtendedBio table--to the same AthleteID in the Athlete Tabe Where the AthleteID in the ExtendedBio Table Is Null
I tried the following:
UPDATE ExtendedBio
SET AthleteID = Athlete.AthleteID
WHERE ExtendedBio.AthleteID = Is Null;
When I try to run it it asks for a parameter value for "Athlete.AthleteID" and another one for "Is Null"
Beth
I tried the following:
UPDATE ExtendedBio
SET AthleteID = Athlete.AthleteID
WHERE ExtendedBio.AthleteID = Is Null;
When I try to run it it asks for a parameter value for "Athlete.AthleteID" and another one for "Is Null"
Beth