I have an append query that Access seems to think is not good enough. The one field, that is the main criteria, "Taxon.Family" does not get appended.
Access keeps adding this field to the append list, causing an error with two fields being appended to one.
How do I stop Access from causing this error?
This is the query as written.....
and this is the query after Access has had a go at it....
Access has included the "Taxon.Family" as part of the append.
It seems the query remains untouched until it is run, then Access does it's dirty work.
Access keeps adding this field to the append list, causing an error with two fields being appended to one.
How do I stop Access from causing this error?
This is the query as written.....
Code:
INSERT INTO nomatch ( Family, Genus, Accession, Collector )
SELECT [Ourimbah Collection].Family, [Ourimbah Collection].Genus, [Ourimbah Collection].AccessionNumber, [Ourimbah Collection].Collector
FROM [Ourimbah Collection] LEFT JOIN Taxon ON [Ourimbah Collection].Genus = Taxon.genus
WHERE (((Taxon.family) Is Null))
ORDER BY [Ourimbah Collection].Family, [Ourimbah Collection].Genus, [Ourimbah Collection].AccessionNumber;
and this is the query after Access has had a go at it....
Access has included the "Taxon.Family" as part of the append.
Code:
INSERT INTO nomatch ( Family, Genus, Accession, Collector, Family )
SELECT [Ourimbah Collection].Family, [Ourimbah Collection].Genus, [Ourimbah Collection].AccessionNumber, [Ourimbah Collection].Collector, Taxon.family
FROM [Ourimbah Collection] LEFT JOIN Taxon ON [Ourimbah Collection].Genus = Taxon.genus
WHERE (((Taxon.family) Is Null))
ORDER BY [Ourimbah Collection].Family, [Ourimbah Collection].Genus, [Ourimbah Collection].AccessionNumber;
It seems the query remains untouched until it is run, then Access does it's dirty work.