码迷,mamicode.com
首页 > 数据库 > 详细

mysql中批量添加一定规则的数据

时间:2015-03-17 12:36:40      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:mysql   批量添加   

在工作的过程中遇到问题

测试人员要求添加100个用于用户名为wa000001 - wa000100 其他字段保持不变

简化表数据如下:

表名:t_user   ,user_id 为自增长主键

user_id   user_name

     7             wl

     9              ee

上面是原有表数据


要实现这个功能可以借助系统表information_schema   实现如下:

定义变量 

 set @x = 0

select @x :=@x +1 seq from information_schema.COLUMNS limit 100

运行结果:

seq

1
2
3
4
5
6

.

.

100

将上面的sql语句和t_user表连接可得到想要的效果

运行之前必须将变量在设置为0
set @x = 0

INSERT t_user(user_name)SELECT
concat(‘wa000‘, lpad(a.seq, 3, ‘0‘))
FROM
(
SELECT
@x :=@x + 1 seq
FROM
information_schema. COLUMNS
LIMIT 100
)a

在查看t_user表

7 wl
9 ee
11 wa000001
13 wa000002
15 wa000003
17 wa000004
19 wa000005
21 wa000006
.

.

209 wa000100

该数据表主键自增长值为2



mysql中批量添加一定规则的数据

标签:mysql   批量添加   

原文地址:http://blog.csdn.net/pleasurehappy/article/details/44338079

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!