【SQL】数据库中select into from 跟 insert into select的区别

【SQL】数据库中select into from 和 insert into select的区别把一张旧表里的字段复制到另外一张新表中.可

【SQL】数据库中select into from 和 insert into select的区别

把一张旧表里的字段复制到另外一张新表中.可以这样写sql语句   select * into 新表 from 旧表 where 新表.id=旧表.id