The information in this article applies to:
SUMMARY
A physical table in a database has records (rows) and fields (columns). A
single record contains a single row of field values. MORE INFORMATIONHow to Copy a Record Using SQLYou can use the SQL Insert Into statement to copy specified records from one table into another:
You can also add a WHERE clause at the end to add any selected records:
How to Use SQL Statements in Visual BasicHere's an example showing how to use the SQL statements in Visual Basic code:
How to Copy a Record Using the Fields Collection and Value PropertyThe following loop copies all the fields in the current record in table 1 to the corresponding fields in the current record in table 2:
The above loop assumes that the fields in table 2 are identical to those
in table 1.
Additional query words: 3.00
Keywords : |
Last Reviewed: August 31, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |