![]() |
|||
How to Copy Data from one table to another table in MYSQL
By: Shalesh | 27 Apr 2011 4:07 pm
How to Copy Data from one table to another table in MYSQL u can use Two mathods 1. By simple export import 2. or By Query INSERT INTO tableone (f1, f2) SELECT t1, t2 FROM tabletwo
|
