insert into table_name(字段值1,字段列表2....) select 字段值1,字段值2... from another_table
//这里another表是必须存在的,而且不能写values关键字
select * into target_table from source_table;
//此句要求目标表不存在,在插入时候自动创建
insert into select or select into 复制表
最新推荐文章于 2023-09-25 00:13:38 发布