When I try to run the following INSERT INTO
query, the following message comes up:
"Data Type Mismatch in Criteria expression"
I have had a look at all my fields and they are the same (Short text). I am wondering if it is the "Where condition". Do I need to have this field in my table where the information is being inserted into?
This is my INSERT
CODE
INSERT INTO Fauna_ATT ( [Burn ID], [Burn Name], [Value Effected], [Pre Burn Action Details], [During Burn Action Details], [Post Burn Action Details] )
SELECT [Burn ID], [Burn Name], [Value Effected], [Pre Burn Action Details], [During Burn Action Details], [Post Burn Action Details]
FROM EPFP
WHERE ATT="TRUE";
Fauna_ATT
andEPFP
- what is the type ofATT
? - barbsan