Jun 29, 2007 #1 mnassih IS-IT--Management Jun 29, 2005 64 SE I want to create a new customer account with the same information in columns but with different ID. Many thanks in advance,
I want to create a new customer account with the same information in columns but with different ID. Many thanks in advance,
Jun 29, 2007 #2 philhege Programmer Feb 1, 2001 2,114 US INSERT INTO Customers (...fieldlist...) SELECT [same fieldlist, same order] FROM Customers WHERE ID = [the ID of the current record] Phil Hegedusich Senior Programmer/Analyst IIMAK http://www.iimak.com----------- Pity the insomniac dyslexic agnostic. He stays up all night, wondering if there really is a dog. Upvote 0 Downvote
INSERT INTO Customers (...fieldlist...) SELECT [same fieldlist, same order] FROM Customers WHERE ID = [the ID of the current record] Phil Hegedusich Senior Programmer/Analyst IIMAK http://www.iimak.com----------- Pity the insomniac dyslexic agnostic. He stays up all night, wondering if there really is a dog.