1、将数据库中的部分数据导到sql文件中:
mysqldump -u root -p bbscs6 BBSCS_USERINFO –where "ID>2312387" > BBSCS_USERINFO-par.sql
2、我这个的意思是把Bug_Report_Log 表中的2013-05-20 数据拷贝到Bug_Report_Log2表中去
INSERT INTO Bug_Report_Log2( ErrMsg,deviceid,OS,softName,createDate )
SELECT ErrMsg,deviceid,OS,softName,createDate
FROM Bug_Report_Log
where createdate like '%2013-05-20%';
SELECT ErrMsg,deviceid,OS,softName,createDate
FROM Bug_Report_Log
where createdate like '%2013-05-20%';