B
BobC
I am trying to understand append queries ...
I was having problems getting an error message:
The INSERT INTO statement contains the following unkown field name:
‘[Part Name]’. Make sure you have typed the name correctly, and try
the operation again.
So I made a copy of the table and tried to append to the copy ... still
get the same error?
Here is the SQL:
INSERT INTO [Copy Of Bobs-UniquePartsListTBL] ( [Part Name], [Model
Number], [Number], [Reference Number], Quanity )
SELECT [Bobs-UniquePartsListTBL].[Part Name],
[Bobs-UniquePartsListTBL].[Model Number],
[Bobs-UniquePartsListTBL].Number, [Bobs-UniquePartsListTBL].[Reference
Number], [Bobs-UniquePartsListTBL].Quanity
FROM [Bobs-UniquePartsListTBL]
ORDER BY [Bobs-UniquePartsListTBL].[Part Name],
[Bobs-UniquePartsListTBL].[Model Number], [Bobs-UniquePartsListTBL].Number;
I'm sure I am doing something stupid? ... but what?
I was having problems getting an error message:
The INSERT INTO statement contains the following unkown field name:
‘[Part Name]’. Make sure you have typed the name correctly, and try
the operation again.
So I made a copy of the table and tried to append to the copy ... still
get the same error?
Here is the SQL:
INSERT INTO [Copy Of Bobs-UniquePartsListTBL] ( [Part Name], [Model
Number], [Number], [Reference Number], Quanity )
SELECT [Bobs-UniquePartsListTBL].[Part Name],
[Bobs-UniquePartsListTBL].[Model Number],
[Bobs-UniquePartsListTBL].Number, [Bobs-UniquePartsListTBL].[Reference
Number], [Bobs-UniquePartsListTBL].Quanity
FROM [Bobs-UniquePartsListTBL]
ORDER BY [Bobs-UniquePartsListTBL].[Part Name],
[Bobs-UniquePartsListTBL].[Model Number], [Bobs-UniquePartsListTBL].Number;
I'm sure I am doing something stupid? ... but what?