[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`


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to