可以用shell写个脚本批量添加mysql用户:
#!/bin/bashi=$1
MAX_INSERT_ROW_COUNT=$2
while [ $i -le $MAX_INSERT_ROW_COUNT ]
do
mysql -uopensips -popensipsrw opensips -e "insert into subscriber(username,password) values ('10$i',10$i)"
d=$(date +%M-%d\ %H\:%m\:%S)
echo "INSERT username 10$i on $d"
i=$((i+1))
sleep 0.05
done
exit 0
常见的insert语句,向数据库中,一条语句只能插入一条数据:insert into persons
(id_p, lastname , firstName, city )
values(204,'haha' , 'deng' , 'shenzhen')
(如上,仅插入了一条记录)
怎样一次insert插入多条记录呢?
使用示例:
insert into persons
(id_p, lastname , firstName, city )
values
(200,'haha' , 'deng' , 'shenzhen'),
(201,'haha2' , 'deng' , 'GD'),
(202,'haha3' , 'deng' , 'Beijing')
这样就批量插入数据了, 遵循这样的语法,就可以批量插入数据了。
执行成功,截图:
据说,在程序开发中,一次插入多条数据,比逐次一条一条的插入数据,效率高很多
所以在程序开发的时候,使用此批量插入,也是比较不错的。
此语句在MySQL 5, postgreSQL 9.3执行通过。
用存储过程,写个循环给你个我以前写的看看begin
declare i int
declare b int
declare c int
set @i=2
set @b=6
set @c=0
set @stmt = concat('insert into t_j_goods_name (id,`code`,`name`)
values(?,?,(select distinct `a` from sheet1 limit ?, 1))')
while @i<442 do
prepare s1 from @stmt
execute s1 using @b,@i,@c
deallocate prepare s1
set @i=@i+1,@b=@b+1,@c=@c+1
end while
end
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)