I want to do this sort of thing:
insert into inventory (select * from inventory where itemID = '7')
The problem is that it wants to copy the itemID which is a primary autocount # also. How could I copy a whole record without it copying the itemID. I would prefer not to use each of the field names instead of . So is there a way to select minus a field. I just want to keep the code flexible for future additions to my site without having to keep updating this page when new fields are added.
Thanks