insert into test 
select * from testlog 不能用*
要明确的写出列名insert into test(col1,col2,..)
select col1,col2,.. from testlog