copy table 1 to table 2
include_once "conexao.php";
session_start();
$result= "INSERT INTO tb_tabela2 (cl_coluna, created) SELECT cl_coluna ,created FROM tb_tabela ";
What do I do wrong?
copy table 1 to table 2
include_once "conexao.php";
session_start();
$result= "INSERT INTO tb_tabela2 (cl_coluna, created) SELECT cl_coluna ,created FROM tb_tabela ";
What do I do wrong?