philosophology;10910775 wrote:What is column? Is it a number? or name of the column?
it's a dummy variable for you to replace with your desired column name(s). If you didn't know that, I suggest you search google for some basic php/mysql tutorials that will explain how to use mysql/php. (btw, I'm assuming you're using mysql and have access to the database via php)
edit:
..disregard what I suggested, I did what you should of done in the first place and searched google and the very first result gave me,
insert
into table2
select *
from table1
so use that, it's a much, much, better approach to accomplish your task.