千家信息网

mysql快速复制一张表的内容,并添加新内容到另一张表中

发表于:2024-11-27 作者:千家信息网编辑
千家信息网最后更新 2024年11月27日,insert into a(name,num,class) select '小米','1001',class from b where name = '小米'; 小米和1001可以当b表中不存在
千家信息网最后更新 2024年11月27日mysql快速复制一张表的内容,并添加新内容到另一张表中
   insert into a(name,num,class)  select '小米','1001',class from b where name = '小米';   小米和1001可以当b表中不存在的字段却又要保存到a表时的写法;


0