Make Table Query Error Message

G

Guest

I use this Make Table Query:

SELECT ParseISINTable.*, ParseISINTable.NSCCode INTO GroupTable
FROM ParseISINTable
WHERE (((ParseISINTable.NSCCode)=[NSCCode:]));

And Get this Error Message:

Cannot Define Field More than Once

Not sure what to do ?

Thank you in advance
 
B

Brendan Reynolds

In this line ...

SELECT ParseISINTable.*, ParseISINTable.NSCCode INTO GroupTable

The '*' symbol means 'all fields. That, of course, includes the field
'NSCCode'.

Change the above line to ...

SELECT ParseISINTable.* INTO GroupTable
 

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