table1(col1,col2) 其中col1为blob类型
table2(cols,cols) 其中col1为blob类型
执行:insert into table1(col1,col2) select col1,cols from table2 报错。。
如何将table2中的记录insert到table1?
------解决方案--------------------------------------------------------
使用备份还原保存过
可以自己写个程序来导
------解决方案--------------------------------------------------------
用同步专家网络版可以。
http://community.csdn.net/Expert/TopicView3.asp?id=5388987
------解决方案--------------------------------------------------------
export出来,再import进去
------解决方案--------------------------------------------------------
insert into tb1 select * from tb2;