if u want to copy the contents of one table to another ensure that the data types of the columns belonging to both the tables are the same. u do not have to bother abt the field names.
just say
insert into a select * from b;
where a and b are tables;
u can also specify column names just like any sql stmts.
Raul wrote:
hello! I have a problem copying a table into another table so serve as a simple back-up system. How do I this?
raul