Using MySQL. Is it possible to move records from table to another.
Any hint would greatly be appreciated.![]()
| SitePoint Sponsor |
Using MySQL. Is it possible to move records from table to another.
Any hint would greatly be appreciated.![]()




Code:insert into t1 select <columns> from t2 where <condition> delete from t2 where <condition>
Hello swampBoogie,
Thanks.
Bookmarks