How to select all fields but one

C

Chaplain Doug

I am doing an append query as follows:

INSERT INTO [Students Archive] SELECT * FROM [Students]
WHERE Selected=True;

I am using an * which copies all fields. Instead, I want
to copy all fields except the "Selected" field. Is there
a way to do this without having to put all the field names
(minus the "Selected" field) in the query?
 
R

Rick Brandt

Chaplain Doug said:
I am doing an append query as follows:

INSERT INTO [Students Archive] SELECT * FROM [Students]
WHERE Selected=True;

I am using an * which copies all fields. Instead, I want
to copy all fields except the "Selected" field. Is there
a way to do this without having to put all the field names
(minus the "Selected" field) in the query?

No.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top