Re: copy question
On Wednesday, 17. July 2002 18:07, Vivian Wang wrote: > Can mysql copy from table1 to table2? > Yes, if table t2 doesn't exist you have to create table2 first. Then you can use INSERT .. SELECT STAMENT. http://www.mysql.com/doc/I/N/INSERT_SELECT.html Regards Georg mysql,query ---
Re: copy question
Yes, CREATE TABLE tbl SELECT * FROM tbl; Vivian Wang wrote: > > Can mysql copy from table1 to table2? > > Thanks. > > - > Before posting, please check: >http://www.mysql.com/manual.php (the manual) >http://lists.my