is there a nice way to insert a row from one identical table to the next without having to longhand all the fields or even use a rs.fields(index) in a loop? thanks, mc
Tue, 09 Mar 2004 21:21:58 GMT
Sukesh Hooga #2 / 2
insert row from row
Michael
Try SQL
INSERT INTO DestinationTable SELECT * FROM SourceTable WHERE SourceTable.ID=SomeValue (or SourceTable.ID BETWEEN x AND y)