一条SQL语句插入两条数据

我请说下,一条SQL语句插入两条数据
最新回答
下次请我

2024-11-24 05:38:10

insert into table_name values

(col1,col2,col3,... ),

(col1,col2,col3,...);

只要将插入的内容用小括号括起来,用逗号隔开,在最后一个内容用后加分号

结束命令即可。
浅夏忆梦

2024-11-24 03:32:56

mysql中支持insert into tableName values(1,1),(2,2),(3,3)这种形式的多行插入,oracle中是不支持的。

若想通过其他表向当前表插入多条数据,可以使用:
insert into 表1(字段列表)
select 字段列表 from 表2
对天空说爱你

2024-11-24 07:07:51

(1)
insert into 表1
select 1
union all
select 2
.
.
.
(2)
insert into 表1(字段列表)
select 字段列表 from 表2
.
.
.

通过这两种方法,插入多少条都行
陌上画桑

2024-11-24 04:29:07

create table test(col1 int,col2 int)
insert test select
1,2 union all select
3,4;
故人的歌

2024-11-24 04:22:43

insert into tabA select ... union all select ...
insert into tabA select * from TabB