I need to move a row from one table to another table that shares the same structure. Is there a way to do that with wildcards?
I thought something like this might work, but no go.
PHP Code:mysql_query("INSERT INTO trkg_arc (*) SELECT * FROM trkg WHERE id = 3") or die(mysql_error());
