Question : Easy question... how to copy a column and contents to another table

I have the clumn userid in the table 'Users'. I want to copy that column and contents over to the table 'Stats'. Any idea how I could do this? Please let me know. Thank you.

Answer : Easy question... how to copy a column and contents to another table

ALTER TABLE Stats ADD COLUMN userid (***create_definition***);
INSERT INTO Stats.userid SELECT Users.userid FROM Users;

http://www.mysql.com/doc/en/ALTER_TABLE.html
http://www.mysql.com/doc/en/INSERT_SELECT.html
Random Solutions  
 
programming4us programming4us