I have a database with three tables. All three tables are not identical, however they all have the same fields that I'm trying to transfer. For example (short example), let <br>
<br>
Table 1: <br>
FName<br>
LName<br>
MInit<br>
<br>
Table 2:<br>
FName<br>
LName<br>
MInit<br>
Address<br>
City<br>
State<br>
Zip<br>
<br>
What I need to be able to do is move everything that's in table one over to the same fields in table two, not minding the extras. I would use a normal insert sql statement, however in reality there's about 100 fields, and there has to be something easier than typing in each field, isn't there? <br>
<br>
Thanks.<br>
<br>
Table 1: <br>
FName<br>
LName<br>
MInit<br>
<br>
Table 2:<br>
FName<br>
LName<br>
MInit<br>
Address<br>
City<br>
State<br>
Zip<br>
<br>
What I need to be able to do is move everything that's in table one over to the same fields in table two, not minding the extras. I would use a normal insert sql statement, however in reality there's about 100 fields, and there has to be something easier than typing in each field, isn't there? <br>
<br>
Thanks.<br>