select into from 和 insert into select 的用法和区别
select into from 和 insert into select都是用来复制表
两者的主要区别为:
select into from 要求目标表不存在,因为在插入时会自动创建。i
nsert into select from 要求目标表存在
select into from 和 insert into select都是用来复制表
两者的主要区别为:
select into from 要求目标表不存在,因为在插入时会自动创建。i
nsert into select from 要求目标表存在