insert into table_name(字段值1,字段列表2....) select 字段值1,字段值2... from another_table
//这里another表是必须存在的,而且不能写values关键字
select * into target_table from source_table;
//此句要求目标表不存在,在插入时候自动创建
insert into table_name select 语法
最新推荐文章于 2025-02-12 17:05:44 发布