mysql获取一张表中部分字段,再批量导入新表中

insert into  testersPage (testersId ,id,status) 
             select id as  testersId , CONCAT('P',md5(uuid())) as id, 1 as status     
             from  testers   ;

新表: testersPage(测试表页面)               旧表:testers(测试表)

需求:新表关联旧表

从旧表中获取id:  select id as testersId  from testers ;

生成uuid:  CONCAT('P',md5(uuid()))       32位+1 位('P'开头首字母)

1 as status :作为常量输入

公式: insert into 表名(字段)值

上一篇:【js】按钮频繁过快点击,防止重复提交处理


下一篇:Tmux Cheat Sheet