mysql复制数据到同一张表

  最近做数据新增时,发现一个表新增的数据依据表内之前的数据,只是第一个字符变动了下,想到写原型Sql来处理问题,现在数据量不多,用手改动也可以,但是不想这样做。主要用到了insert into A(A.a,A.b,A.c)select concat('1',A.a),A.b,A.c from A where 子句的形式,能快速解决此问题。


insert into cfg_bs_and_db (db_id,bs_id,lmidx_bs,dbtype,changed,time_cr) select  concat('4',db_id),bs_id,lmidx_bs,dbtype,changed,time_cr from cfg_bs_and_db where dbtype = 1;


你可能感兴趣的:(数据库)