G
Guest
Here is the SQL syntax for the query:
SELECT qryCOMU_egg_first_seen.[Sub-colony], qryCOMU_egg_first_seen.[Site
number], qryCOMU_egg_first_seen.[Egg first seen],
qryCOMU_egg_first_seen.[Expected hatch date], qryCOMU_chick_first_seen.[Chick
first seen], qryCOMU_chick_first_seen.[Expected fledge date]
FROM qryCOMU_egg_first_seen INNER JOIN qryCOMU_chick_first_seen ON
qryCOMU_egg_first_seen.[Site number] = qryCOMU_chick_first_seen.[Site number]
ORDER BY qryCOMU_egg_first_seen.[Sub-colony], qryCOMU_egg_first_seen.[Site
number];
I run into a problem when I run this query b/c the even though [Chick first
seen] and [Expected fledge date] don't have data for some records, the query
automatically fills them in with todays date. How do I get this to run so
that data is only entered, when data actually exists in the record? Thanks
in advance.
SELECT qryCOMU_egg_first_seen.[Sub-colony], qryCOMU_egg_first_seen.[Site
number], qryCOMU_egg_first_seen.[Egg first seen],
qryCOMU_egg_first_seen.[Expected hatch date], qryCOMU_chick_first_seen.[Chick
first seen], qryCOMU_chick_first_seen.[Expected fledge date]
FROM qryCOMU_egg_first_seen INNER JOIN qryCOMU_chick_first_seen ON
qryCOMU_egg_first_seen.[Site number] = qryCOMU_chick_first_seen.[Site number]
ORDER BY qryCOMU_egg_first_seen.[Sub-colony], qryCOMU_egg_first_seen.[Site
number];
I run into a problem when I run this query b/c the even though [Chick first
seen] and [Expected fledge date] don't have data for some records, the query
automatically fills them in with todays date. How do I get this to run so
that data is only entered, when data actually exists in the record? Thanks
in advance.