select into from 和 insert into select from 的区别
select*intotarget_tablefromsource_table;insertintotarget_table(column1,column2)selectcolumn1,5fromsource_table;以上两句都是将源表source_table的记录插入到目标表target_table,但两句又有区别。第一句(select into from)要求目标表target_table不存在,因为在插入时会自动创建。第二句(insert into select fr...