Append query without field names

J

John

Hi

Is there a way to have an append query without the field names so whichever
filed names match between the source and destination tables they get copied?

Thanks

Regards
 
J

John W. Vinson

Hi

Is there a way to have an append query without the field names so whichever
filed names match between the source and destination tables they get copied?

Thanks

Regards

INSERT INTO target
(SELECT * FROM source)
 
Top