| List: | General Discussion | « Previous MessageNext Message » | |
| From: | Jay Blanchard | Date: | November 18 2004 1:10pm |
| Subject: | RE: copy data only from one table to another table | ||
| View as plain text | |||
[snip] How do I copy all data only from one table into another table? Both tables are in the same database. I have phpMyAdmin and it suppossedly does this, but it is not working, and there are no error messages. [/snip] INSERT INTO `table2` (`columnnames`) SELECT `columnnames` FROM `table1`
