| Subject | RE: Data transfer from one table to another |
|---|---|
| Author | |
| Post date | 2014-01-09T10:22:22Z |
column numbers and type must match in inserted table from the select
insert into Members (number, name)
select number, name from NewMembers
| Subject | RE: Data transfer from one table to another |
|---|---|
| Author | |
| Post date | 2014-01-09T10:22:22Z |
column numbers and type must match in inserted table from the select
insert into Members (number, name)
select number, name from NewMembers