复制数据表create tableselect from 和 insert into table select from区别
两者都是用来复制表,两者的主要区别为:
create table select from 要求目标表不存在,因为在插入时会自动创建。
insert into table select from 要求目标表存在,相当于复制插入。
2024年09月14日
复制数据表create tableselect from 和 insert into table select from区别
两者都是用来复制表,两者的主要区别为:
create table select from 要求目标表不存在,因为在插入时会自动创建。
insert into table select from 要求目标表存在,相当于复制插入。