mysql中如何批量插入数据?
发布网友
发布时间:2022-04-25 04:25
我来回答
共3个回答
热心网友
时间:2022-04-08 05:02
update 表名 set type=true where name>=1 and name <=100
热心网友
时间:2022-04-08 06:20
DECLARE @a int;
set @a=0;
while @a<100
begin
insert tt (name,type) values (@a,'true');
set @a=@a+1
end
热心网友
时间:2022-04-08 07:54
用个for循环declare @ii int
set @ii=0
while(@ii <100)
begin
insert into A (name,type) values(@ii+1,true)set @ii=@ii+1
end 还有就是提醒楼上的朋友 sql语句是没有 a>=b 这些符号的 只有 a>b AND a=b