mysql快速复制一张表的内容,并添加新内容到另一张表中
更新:HHH   时间:2023-1-7


   insert into a(name,num,class)  select '小米','1001',class from b where name = '小米';
   小米和1001可以当b表中不存在的字段却又要保存到a表时的写法;


返回MySQL数据库教程...